From 597f0b86b10341c8e08b6f4526c84bb2db1de6fc Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 5 Jan 2007 12:54:17 +0100 Subject: [PATCH] qcap: Print GetLastError() in decimal with '%u'. --- dlls/qcap/v4l.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/qcap/v4l.c b/dlls/qcap/v4l.c index ea844d16255..bfc523693e5 100644 --- a/dlls/qcap/v4l.c +++ b/dlls/qcap/v4l.c @@ -689,7 +689,7 @@ HRESULT qcap_driver_run(Capture *capBox, FILTER_STATE *state) LeaveCriticalSection(&capBox->CritSect); return S_OK; } - ERR("Creating thread failed.. %x\n", GetLastError()); + ERR("Creating thread failed.. %u\n", GetLastError()); LeaveCriticalSection(&capBox->CritSect); return E_FAIL; } -- 2.11.4.GIT