PATCH: dlls/winmm/mmsystem.c format string fix

Gerald Pfeifer pfeifer at dbai.tuwien.ac.at
Mon Jul 29 16:30:21 CDT 2002


(The compiler has warned about this, hasn't it?)

ChangeLog:
Fix format string.

Index: mmsystem.c
===================================================================
RCS file: /home/wine/wine/dlls/winmm/mmsystem.c,v
retrieving revision 1.62
diff -u -3 -p -r1.62 mmsystem.c
--- mmsystem.c	28 Jul 2002 23:48:27 -0000	1.62
+++ mmsystem.c	29 Jul 2002 21:25:57 -0000
@@ -1988,7 +1988,7 @@ HTASK WINAPI mciGetCreatorTask(UINT uDev

     if ((wmd = MCI_GetDriver(uDeviceID))) ret = (HTASK)wmd->CreatorThread;

-    TRACE("(%u) => %08lx\n", uDeviceID, ret);
+    TRACE("(%u) => %08x\n", uDeviceID, ret);
     return ret;
 }





More information about the wine-patches mailing list