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

This commit is contained in:
Francois Gouget 2007-12-07 00:59:29 +01:00 committed by Alexandre Julliard
parent 842450e96b
commit b8ee557386
1 changed files with 1 additions and 1 deletions

View File

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