mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 05:15:01 +00:00
Fixed leftover import table name in output_import_thunk.
This commit is contained in:
parent
1ca3de36e8
commit
e51ffce568
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue