Fixed leftover import table name in output_import_thunk.
This commit is contained in:
parent
1ca3de36e8
commit
e51ffce568
|
@ -701,7 +701,7 @@ static void output_import_thunk( FILE *outfile, const char *name, const char *ta
|
||||||
if (!UsePIC)
|
if (!UsePIC)
|
||||||
{
|
{
|
||||||
if (strstr( name, "__wine_call_from_16" )) fprintf( outfile, " \"\\t.byte 0x2e\\n\"\n" );
|
if (strstr( name, "__wine_call_from_16" )) fprintf( outfile, " \"\\t.byte 0x2e\\n\"\n" );
|
||||||
fprintf( outfile, " \"\\tjmp *(imports+%d)\\n\"\n", pos );
|
fprintf( outfile, " \"\\tjmp *(%s+%d)\\n\"\n", asm_name(table), pos );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue