Fix format warnings for HRESULT

This commit is contained in:
2021-06-16 17:51:20 +00:00
parent e4999005cb
commit 9cd231f2eb
6 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ HRESULT idz_io_jvs_init(void)
if (inst == NULL) {
hr = HRESULT_FROM_WIN32(GetLastError());
dprintf("GetModuleHandleW failed: %x\n", hr);
dprintf("GetModuleHandleW failed: %lx\n", hr);
return hr;
}