Commit 2659ac14 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

comctl32/tests: fix an ok() call's trailing '\n'.

parent f096b023
...@@ -541,7 +541,7 @@ static void test_notify(void) ...@@ -541,7 +541,7 @@ static void test_notify(void)
wclass.lpszClassName = "TestNotifyParentClass"; wclass.lpszClassName = "TestNotifyParentClass";
wclass.lpfnWndProc = test_notify_parent_proc; wclass.lpfnWndProc = test_notify_parent_proc;
atom = RegisterClassA(&wclass); atom = RegisterClassA(&wclass);
ok(atom, "RegisterClass failed!n"); ok(atom, "RegisterClass failed\n");
/* create parent */ /* create parent */
hwndParent = CreateWindow(wclass.lpszClassName, "parent", WS_OVERLAPPEDWINDOW, hwndParent = CreateWindow(wclass.lpszClassName, "parent", WS_OVERLAPPEDWINDOW,
......
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