Commit 9317377f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msvcrt/tests: Cast-qual warnings fix.

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