Skip to content
Snippets Groups Projects
Commit 256ac22d authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Display the name of the function when import failed.

parent 2682bc24
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment