mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
windowscodecs/tests: Avoid size_t in a trace.
This commit is contained in:
parent
a3c395b791
commit
f69968bb4a
1 changed files with 1 additions and 1 deletions
|
@ -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"); \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue