gdi32/tests: Fix a compiler warning.

This commit is contained in:
Alexandre Julliard 2007-12-14 14:31:06 +01:00
parent 1590b1f731
commit 976939745d
1 changed files with 1 additions and 1 deletions

View File

@ -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);