Commit e51ffce5 authored by Steve Zellers's avatar Steve Zellers Committed by Alexandre Julliard

Fixed leftover import table name in output_import_thunk.

parent 1ca3de36
......@@ -701,7 +701,7 @@ static void output_import_thunk( FILE *outfile, const char *name, const char *ta
if (!UsePIC)
{
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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment