Commit d3b39fe3 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Fixed file name when opening NUL.

parent 3b322dce
......@@ -104,7 +104,7 @@ static void test_fwprintf( void )
const char *string="not a wide string";
todo_wine
{
ok(fwprintf(fopen("/dev/null","r+"),(wchar_t *)string) == -1,"Non-wide string should not be printed by fwprintf\n");
ok(fwprintf(fopen("nul","r+"),(wchar_t *)string) == -1,"Non-wide string should not be printed by fwprintf\n");
}
}
......
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