Austin English : quartz: Fix compiler warnings on Clang.

Alexandre Julliard julliard at winehq.org
Mon Sep 20 12:12:22 CDT 2010


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

Author: Austin English <austinenglish at gmail.com>
Date:   Mon Sep 20 03:48:49 2010 -0500

quartz: Fix compiler warnings on Clang.

---

 dlls/quartz/avisplit.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/quartz/avisplit.c b/dlls/quartz/avisplit.c
index 5b0c7e0..a895ae5 100644
--- a/dlls/quartz/avisplit.c
+++ b/dlls/quartz/avisplit.c
@@ -535,8 +535,8 @@ static HRESULT AVISplitter_ProcessIndex(AVISplitterImpl *This, AVISTDINDEX **ind
 
     TRACE("FOURCC: %s\n", debugstr_an((char *)&pIndex->fcc, 4));
     TRACE("wLongsPerEntry: %hd\n", pIndex->wLongsPerEntry);
-    TRACE("bIndexSubType: %hd\n", pIndex->bIndexSubType);
-    TRACE("bIndexType: %hd\n", pIndex->bIndexType);
+    TRACE("bIndexSubType: %u\n", pIndex->bIndexSubType);
+    TRACE("bIndexType: %u\n", pIndex->bIndexType);
     TRACE("nEntriesInUse: %u\n", pIndex->nEntriesInUse);
     TRACE("dwChunkId: %.4s\n", (char *)&pIndex->dwChunkId);
     TRACE("qwBaseOffset: %x%08x\n", (DWORD)(pIndex->qwBaseOffset >> 32), (DWORD)pIndex->qwBaseOffset);
@@ -785,8 +785,8 @@ static HRESULT AVISplitter_ProcessStreamList(AVISplitterImpl * This, const BYTE
             }
 
             TRACE("wLongsPerEntry: %hd\n", pIndex->wLongsPerEntry);
-            TRACE("bIndexSubType: %hd\n", pIndex->bIndexSubType);
-            TRACE("bIndexType: %hd\n", pIndex->bIndexType);
+            TRACE("bIndexSubType: %u\n", pIndex->bIndexSubType);
+            TRACE("bIndexType: %u\n", pIndex->bIndexType);
             TRACE("nEntriesInUse: %u\n", pIndex->nEntriesInUse);
             TRACE("dwChunkId: %.4s\n", (const char *)&pIndex->dwChunkId);
             if (pIndex->dwReserved[0])




More information about the wine-cvs mailing list