Module: wine Branch: master Commit: e63b0a0a45b67a31baa164c2b63b11253e11f6c3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e63b0a0a45b67a31baa164c2b6...
Author: André Hentschel nerv@dawncrow.de Date: Wed Dec 10 23:47:50 2014 +0100
gdiplus/tests: Fix compiler warnings with flag -Wunused-macros.
---
dlls/gdiplus/tests/graphics.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/dlls/gdiplus/tests/graphics.c b/dlls/gdiplus/tests/graphics.c index bd227dc..c9cc463 100644 --- a/dlls/gdiplus/tests/graphics.c +++ b/dlls/gdiplus/tests/graphics.c @@ -28,7 +28,6 @@ #define expect(expected, got) ok((got) == (expected), "Expected %d, got %d\n", (INT)(expected), (INT)(got)) #define expectf_(expected, got, precision) ok(fabs((expected) - (got)) <= (precision), "Expected %f, got %f\n", (expected), (got)) #define expectf(expected, got) expectf_((expected), (got), 0.001) -#define TABLE_LEN (23)
static const REAL mm_per_inch = 25.4; static const REAL point_per_inch = 72.0;