msvcrt/tests: Cast-qual warnings fix.

This commit is contained in:
Andrew Talbot 2006-12-11 21:41:58 +00:00 committed by Alexandre Julliard
parent 24c4f46da4
commit 9317377fb8
1 changed files with 2 additions and 1 deletions

View File

@ -504,7 +504,8 @@ static void test_fwprintf( void )
const char *string="not a wide string";
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");
}
}