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

This commit is contained in:
Francois Gouget 2010-03-20 15:25:31 +01:00 committed by Alexandre Julliard
parent f096b023c4
commit 2659ac14f8
1 changed files with 1 additions and 1 deletions

View File

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