inetcomm/tests: Fix compilation on systems that don't support nameless unions.

Francois Gouget fgouget at free.fr
Thu Dec 6 17:59:29 CST 2007


---

Note that, in addition to the nameless union, LARGE_INTEGER always 
has the named union. So we don't need the U() macro here.


 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);
-- 
1.5.3.4




More information about the wine-patches mailing list