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

oldstable
Francois Gouget 2008-12-17 10:26:25 +01:00 committed by Alexandre Julliard
parent bfa7fded98
commit 9a911f5443
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ static void test_asciimode2(void)
fclose(fp);
fp = fopen("ascii2.tst", "rt");
ok(getc(fp) == '0', "first char not 0");
ok(getc(fp) == '0', "first char not 0\n");
memset(ibuf, 0, sizeof(ibuf));
i = fread(ibuf, 1, sizeof(ibuf), fp);
ok(i == sizeof(ibuf), "fread i %d != sizeof(ibuf) %d\n", i, sizeof(ibuf));