Francois Gouget : user32/tests: Don' t use 0x55 to avoid any confusion when running with +heap.
Module: wine Branch: master Commit: c099b40509f828a8b835b62fc566740c57f08ce2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c099b40509f828a8b835b62fc5... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Mar 5 12:04:12 2008 +0100 user32/tests: Don't use 0x55 to avoid any confusion when running with +heap. --- dlls/user32/tests/menu.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/user32/tests/menu.c b/dlls/user32/tests/menu.c index cb37ac0..99974b0 100644 --- a/dlls/user32/tests/menu.c +++ b/dlls/user32/tests/menu.c @@ -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);
participants (1)
-
Alexandre Julliard