Display the name of the function when import failed.
This commit is contained in:
parent
2682bc24ca
commit
256ac22dee
|
@ -361,8 +361,8 @@ DWORD fixup_imports( WINE_MODREF *wm )
|
|||
wmImp->module, pe_name->Name, TRUE
|
||||
);
|
||||
if (!thunk_list->u1.Function) {
|
||||
ERR("No implementation for %s.%d, setting to 0xdeadbeef\n",
|
||||
name, pe_name->Hint);
|
||||
ERR("No implementation for %s.%d(%s), setting to 0xdeadbeef\n",
|
||||
name, pe_name->Hint, pe_name->Name);
|
||||
thunk_list->u1.Function = (FARPROC)0xdeadbeef;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue