Commit 54c74dc4 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent cb5beede
......@@ -2984,7 +2984,7 @@ static void test_hglobal_storage_creation(void)
r = ILockBytes_Stat(ilb, &stat, STATFLAG_NONAME);
ok(r == S_OK, "ILockBytes_Stat failed, hr=%x\n", r);
ok(stat.cbSize.LowPart < 2512, "expected truncated size, got %d\n", stat.cbSize.LowPart);
ok(stat.cbSize.u.LowPart < 2512, "expected truncated size, got %d\n", stat.cbSize.u.LowPart);
ILockBytes_Release(ilb);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment