user32/tests: Add the trailing '\n' to a couple of ok() calls.

This commit is contained in:
Francois Gouget 2008-03-05 12:03:54 +01:00 committed by Alexandre Julliard
parent bd4dcad02f
commit e27922ddf5
1 changed files with 2 additions and 2 deletions

View File

@ -66,11 +66,11 @@ static void test_LoadStringW(void)
{
/* check that calling LoadStringW with buffer = NULL returns zero */
retvalue = LoadStringW(hInst, 2, NULL, 0);
ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d",
ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d\n",
retvalue);
/* check again, with a different buflen value, that calling LoadStringW with buffer = NULL returns zero */
retvalue = LoadStringW(hInst, 2, NULL, 128);
ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d",
ok(!retvalue, "LoadStringW returned a non-zero value when called with buffer = NULL, retvalue = %d\n",
retvalue);
}
}