Commit 09a5f0f1 authored by Alexandre Julliard's avatar Alexandre Julliard

gdiplus/tests: Add back some necessary casts.

parent e0f4d5ca
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include "gdiplus.h" #include "gdiplus.h"
#include "wine/test.h" #include "wine/test.h"
#define expect(expected, got) ok((got) == (expected), "Expected %d, got %d\n", (expected), (got)) #define expect(expected, got) ok((got) == (expected), "Expected %d, got %d\n", (UINT)(expected), (UINT)(got))
#define expectf(expected, got) ok(fabs((expected) - (got)) < 0.0001, "Expected %f, got %f\n", (expected), (got)) #define expectf(expected, got) ok(fabs((expected) - (got)) < 0.0001, "Expected %f, got %f\n", (expected), (got))
static BOOL color_match(ARGB c1, ARGB c2, BYTE max_diff) static BOOL color_match(ARGB c1, ARGB c2, BYTE max_diff)
......
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