From 35862dad787755d86eec8770bb585fcfbfac61ae Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 14 Feb 2015 13:24:54 +0000 Subject: [PATCH] [GDI32_APITEST] Fix GCC build svn path=/trunk/; revision=66260 --- rostests/apitests/gdi32/FrameRgn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rostests/apitests/gdi32/FrameRgn.c b/rostests/apitests/gdi32/FrameRgn.c index 99f9481be20..2187acfa1a9 100644 --- a/rostests/apitests/gdi32/FrameRgn.c +++ b/rostests/apitests/gdi32/FrameRgn.c @@ -90,7 +90,7 @@ CheckBitmapBitsWithLine( { i = y * cx + x; ok(GetPixel(hdc, x, y) == pcrColors[pjBits[i]], - "Wrong pixel at (%u,%u): expected 0x%08x, got 0x%08x\n", + "Wrong pixel at (%u,%u): expected 0x%08lx, got 0x%08lx\n", x, y, pcrColors[pjBits[i]], GetPixel(hdc, x, y)); } }