user32/tests: Don't use 0x55 to avoid any confusion when running with +heap.

This commit is contained in:
Francois Gouget 2008-03-05 12:04:12 +01:00 committed by Alexandre Julliard
parent e27922ddf5
commit c099b40509
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ static void test_menu_bmp_and_string(void)
return;
}
memset( bmfill, 0x55, sizeof( bmfill));
memset( bmfill, 0xcc, sizeof( bmfill));
hwnd = CreateWindowEx(0, MAKEINTATOM(atomMenuCheckClass), NULL,
WS_VISIBLE, CW_USEDEFAULT, CW_USEDEFAULT, 200, 200,
NULL, NULL, NULL, NULL);