Commit 8d8544fa authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 4d6b7475
......@@ -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)
......
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