Use proper asm name for external functions.

This commit is contained in:
Alexandre Julliard 2005-11-15 12:05:45 +00:00
parent adf48a3cc7
commit 86f8aef511
2 changed files with 2 additions and 2 deletions

View File

@ -371,7 +371,7 @@ __ASM_GLOBAL_FUNC( LdrAccessResource,
"pushl 16(%ebp)\n"
"pushl 12(%ebp)\n"
"pushl 8(%ebp)\n"
"call access_resource\n"
"call " __ASM_NAME("access_resource") "\n"
"leave\n"
"ret $16\n"
);

View File

@ -1456,7 +1456,7 @@ __ASM_GLOBAL_FUNC( EXC_CallHandler,
" pushl 16(%ebp)\n"
" pushl 12(%ebp)\n"
" pushl 8(%ebp)\n"
" call call_exception_handler\n"
" call " __ASM_NAME("call_exception_handler") "\n"
" leave\n"
" ret\n"
);