From 976939745d8c24efc9331687c6bca13a3de32cf9 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 14 Dec 2007 14:31:06 +0100 Subject: [PATCH] gdi32/tests: Fix a compiler warning. --- dlls/gdi32/tests/bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/gdi32/tests/bitmap.c b/dlls/gdi32/tests/bitmap.c index 394d694c0c4..0964f0df789 100644 --- a/dlls/gdi32/tests/bitmap.c +++ b/dlls/gdi32/tests/bitmap.c @@ -1701,7 +1701,7 @@ static void test_CreateBitmap(void) BITMAP bmp; HDC screenDC = GetDC(0); HDC hdc = CreateCompatibleDC(screenDC); - UINT i, expect; + UINT i, expect = 0; /* all of these are the stock monochrome bitmap */ HBITMAP bm = CreateCompatibleBitmap(hdc, 0, 0);