Fixed leftover import table name in output_import_thunk.

oldstable
Steve Zellers 2005-07-13 11:39:12 +00:00 committed by Alexandre Julliard
parent 1ca3de36e8
commit e51ffce568
1 changed files with 1 additions and 1 deletions

View File

@ -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
{