Commit 5d21966b authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

msvcrt/tests: Fix typo (Coverity).

parent 6a917733
......@@ -1948,7 +1948,7 @@ static void test_fopen_fclose_fcloseall( void )
ok(errno == 0xdeadbeef, "errno = %d\n", errno);
ret = fclose(NULL);
ok(ret == EOF, "Closing NULL file returned %d\n", ret);
ok(errno = EINVAL, "errno = %d\n", errno);
ok(errno == EINVAL, "errno = %d\n", errno);
/* testing fcloseall() */
numclosed = _fcloseall();
......
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