Use proper asm name for external functions.
This commit is contained in:
parent
adf48a3cc7
commit
86f8aef511
|
@ -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"
|
||||
);
|
||||
|
|
|
@ -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"
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue