Display the name of the function when import failed.

oldstable
Alexandre Julliard 2000-11-27 22:03:46 +00:00
parent 2682bc24ca
commit 256ac22dee
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}