Alexandre Julliard : windowscodecs/tests: Avoid size_t in a trace.

Alexandre Julliard julliard at winehq.org
Thu Nov 24 15:04:37 CST 2011


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Nov 23 23:28:26 2011 +0100

windowscodecs/tests: Avoid size_t in a trace.

---

 dlls/windowscodecs/tests/metadata.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/windowscodecs/tests/metadata.c b/dlls/windowscodecs/tests/metadata.c
index e3a51e5..e3c3325 100644
--- a/dlls/windowscodecs/tests/metadata.c
+++ b/dlls/windowscodecs/tests/metadata.c
@@ -31,7 +31,7 @@
 #define expect_blob(propvar, data, length) do { \
     ok((propvar).vt == VT_BLOB, "unexpected vt: %i\n", (propvar).vt); \
     if ((propvar).vt == VT_BLOB) { \
-        ok(U(propvar).blob.cbSize == (length), "expected size %i, got %i\n", (length), U(propvar).blob.cbSize); \
+        ok(U(propvar).blob.cbSize == (length), "expected size %u, got %u\n", (ULONG)(length), U(propvar).blob.cbSize); \
         if (U(propvar).blob.cbSize == (length)) { \
             ok(!memcmp(U(propvar).blob.pBlobData, (data), (length)), "unexpected data\n"); \
         } \




More information about the wine-cvs mailing list