hlink/tests: Add a trailing '\n' to an ok() call.

oldstable
Francois Gouget 2010-03-20 15:25:14 +01:00 committed by Alexandre Julliard
parent 3127501f86
commit da00e1558e
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ static void test_BrowseWindowInfo(void)
hres = IHlinkBrowseContext_GetBrowseWindowInfo(bc, &bwinfo_get);
ok(hres == S_OK, "GetBrowseWindowInfo failed: 0x%08x\n", hres);
ok(!memcmp(&bwinfo_set, &bwinfo_get, sizeof(HLBWINFO)), "Set and Get differ");
ok(!memcmp(&bwinfo_set, &bwinfo_get, sizeof(HLBWINFO)), "Set and Get differ\n");
}
START_TEST(browse_ctx)