Francois Gouget : qcap: Print GetLastError() in decimal with '%u'.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jan 5 13:36:05 CST 2007


Module: wine
Branch: master
Commit: 597f0b86b10341c8e08b6f4526c84bb2db1de6fc
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=597f0b86b10341c8e08b6f4526c84bb2db1de6fc

Author: Francois Gouget <fgouget at 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;
     }




More information about the wine-cvs mailing list