gdiplus/tests: Fix parentheses in the expect() macro.

This commit is contained in:
Alexandre Julliard 2009-12-14 14:55:05 +01:00
parent 4d6b74758f
commit 8d8544fa15
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
#include "gdiplus.h"
#include "wine/test.h"
#define expect(expected, got) ok(((UINT)got) == ((UINT)expected), "Expected %.8x, got %.8x\n", (UINT)expected, (UINT)got)
#define expect(expected, got) ok((UINT)(got) == (UINT)(expected), "Expected %.8x, got %.8x\n", (UINT)(expected), (UINT)(got))
#define expectf(expected, got) ok(fabs(expected - got) < 0.0001, "Expected %.2f, got %.2f\n", expected, got)
static void expect_rawformat(REFGUID expected, GpImage *img, int line, BOOL todo)