Commit 256ac22d authored by Alexandre Julliard's avatar Alexandre Julliard

Display the name of the function when import failed.

parent 2682bc24
...@@ -361,8 +361,8 @@ DWORD fixup_imports( WINE_MODREF *wm ) ...@@ -361,8 +361,8 @@ DWORD fixup_imports( WINE_MODREF *wm )
wmImp->module, pe_name->Name, TRUE wmImp->module, pe_name->Name, TRUE
); );
if (!thunk_list->u1.Function) { if (!thunk_list->u1.Function) {
ERR("No implementation for %s.%d, setting to 0xdeadbeef\n", ERR("No implementation for %s.%d(%s), setting to 0xdeadbeef\n",
name, pe_name->Hint); name, pe_name->Hint, pe_name->Name);
thunk_list->u1.Function = (FARPROC)0xdeadbeef; thunk_list->u1.Function = (FARPROC)0xdeadbeef;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment