Commit dd88237d authored by Lei Zhang's avatar Lei Zhang Committed by Alexandre Julliard

user32: Remove a unused variable from ES_PASSWORD test.

parent 191a29c1
...@@ -1006,13 +1006,10 @@ static void test_text_position(void) ...@@ -1006,13 +1006,10 @@ static void test_text_position(void)
static void test_espassword(void) static void test_espassword(void)
{ {
HWND hwEdit; HWND hwEdit;
MSG msMessage;
LONG r; LONG r;
char buffer[1024]; char buffer[1024];
const char* password = "secret"; const char* password = "secret";
msMessage.message = WM_KEYDOWN;
hwEdit = create_editcontrol(ES_PASSWORD, 0); hwEdit = create_editcontrol(ES_PASSWORD, 0);
r = get_edit_style(hwEdit); r = get_edit_style(hwEdit);
ok(r == ES_PASSWORD, "Wrong style expected 0x%x got: 0x%x\n", ES_PASSWORD, r); ok(r == ES_PASSWORD, "Wrong style expected 0x%x got: 0x%x\n", ES_PASSWORD, r);
......
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