On Tue, Jul 27, 2010 at 2:00 AM, Michael Stefaniuc <[email protected]> wrote: > - ok(memcmp(&guid, &IID_Endianess, sizeof(guid)) == 0, "Endianess broken\n"); > + ok(!IsEqualGUID(&guid, &IID_Endianess), "Endianess broken\n");
memcmp returns 0 when there is a match, so you should probably use IsEqualGUID without the negation. Octavian
