Commit 4ee530b2 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msvcrt/tests: Remove a space before a '\n'.

parent 4d044c6f
......@@ -369,7 +369,7 @@ static void test_asciimode(void)
fclose(fp);
fp = fopen("ascii.tst", "r");
fseek(fp, 3 ,SEEK_SET);
ok((c = fgetc(fp)) == '1', "fgetc fails to read next char when positioned on \\r \n");
ok((c = fgetc(fp)) == '1', "fgetc fails to read next char when positioned on \\r\n");
fclose(fp);
unlink("ascii.tst");
......
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