ole32/tests: Avoid using sizeof in a trace.

This commit is contained in:
Alexandre Julliard 2006-09-27 20:54:05 +02:00
parent dba338f2e6
commit 335144dc04
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ static void test_streamonhglobal(IStream *pStream)
/* should return S_OK, not S_FALSE */ /* should return S_OK, not S_FALSE */
hr = IStream_Read(pStream, buffer, sizeof(buffer), &read); hr = IStream_Read(pStream, buffer, sizeof(buffer), &read);
ok_ole_success(hr, "IStream_Read"); ok_ole_success(hr, "IStream_Read");
ok(read == sizeof(data), "IStream_Read returned read %ld instead of %d\n", read, sizeof(data)); ok(read == sizeof(data), "IStream_Read returned read %ld\n", read);
/* ignores HighPart */ /* ignores HighPart */
ull.HighPart = -1; ull.HighPart = -1;