msvcrt/tests: Fix typo (Coverity).

Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
This commit is contained in:
Fabian Maurer 2022-11-02 05:13:16 +01:00 committed by Alexandre Julliard
parent 6a917733b4
commit 5d21966b9f

View file

@ -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();