Jinoh Kang (@iamahuman) commented about dlls/ntdll/misc.c:
} + +/****************************************************************************** + * NtdllDefWindowProc_A (NTDLL.@) + */ +LRESULT WINAPI NtdllDefWindowProc_A( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ) +{ + LPARAM (WINAPI *pDefWindowProcA)(HWND,UINT,WPARAM,LPARAM); /* DefWindowProcA */ + + const UNICODE_STRING name = RTL_CONSTANT_STRING( L"user32.dll" ); + NTSTATUS status; + HMODULE module; + + if (( status = LdrGetDllHandle( NULL, 0, &name, &module ))) + { + ERR("Failed to get user32.dll handle, status %ld\n", status); Hex should be more useful for NTSTATUS.
```suggestion:-0+0 ERR("Failed to get user32.dll handle, status %08lx\n", status); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5236#note_65645