Module: wine Branch: master Commit: 597f0b86b10341c8e08b6f4526c84bb2db1de6fc URL: http://source.winehq.org/git/wine.git/?a=commit;h=597f0b86b10341c8e08b6f4526...
Author: Francois Gouget fgouget@free.fr Date: Fri Jan 5 12:54:17 2007 +0100
qcap: Print GetLastError() in decimal with '%u'.
---
dlls/qcap/v4l.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/qcap/v4l.c b/dlls/qcap/v4l.c index ea844d1..bfc5236 100644 --- a/dlls/qcap/v4l.c +++ b/dlls/qcap/v4l.c @@ -689,7 +689,7 @@ HRESULT qcap_driver_run(Capture *capBox, 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; }