Module: wine Branch: master Commit: b8ee5573862477cd03aa2e48c876598c3ee9ab54 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b8ee5573862477cd03aa2e48c8...
Author: Francois Gouget fgouget@free.fr Date: Fri Dec 7 00:59:29 2007 +0100
inetcomm/tests: Fix compilation on systems that don't support nameless unions.
---
dlls/inetcomm/tests/mimeole.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/inetcomm/tests/mimeole.c b/dlls/inetcomm/tests/mimeole.c index c425c21..51135d1 100644 --- a/dlls/inetcomm/tests/mimeole.c +++ b/dlls/inetcomm/tests/mimeole.c @@ -116,7 +116,7 @@ static void test_CreateBody(void) ok(hr == S_OK, "ret %08x\n", hr); off.QuadPart = 0; IStream_Seek(in, off, STREAM_SEEK_CUR, &pos); - ok(pos.LowPart == 328, "pos %u\n", pos.LowPart); + ok(pos.u.LowPart == 328, "pos %u\n", pos.u.LowPart);
hr = IMimeBody_IsContentType(body, "multipart", "mixed"); ok(hr == S_OK, "ret %08x\n", hr);