Commit 97693974 authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32/tests: Fix a compiler warning.

parent 1590b1f7
...@@ -1701,7 +1701,7 @@ static void test_CreateBitmap(void) ...@@ -1701,7 +1701,7 @@ static void test_CreateBitmap(void)
BITMAP bmp; BITMAP bmp;
HDC screenDC = GetDC(0); HDC screenDC = GetDC(0);
HDC hdc = CreateCompatibleDC(screenDC); HDC hdc = CreateCompatibleDC(screenDC);
UINT i, expect; UINT i, expect = 0;
/* all of these are the stock monochrome bitmap */ /* all of these are the stock monochrome bitmap */
HBITMAP bm = CreateCompatibleBitmap(hdc, 0, 0); HBITMAP bm = CreateCompatibleBitmap(hdc, 0, 0);
......
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