msvcrt: Trace the results of two failing tests.

This commit is contained in:
James Hawkins 2008-09-02 01:05:37 -05:00 committed by Alexandre Julliard
parent e5fd83da6d
commit 43c97f4477
1 changed files with 2 additions and 2 deletions

View File

@ -390,9 +390,9 @@ static void test_sprintf( void )
format = "asdf%n";
x = 0;
r = sprintf(buffer, format, &x );
ok(x == 4, "should write to x\n");
ok(x == 4, "should write to x: %d\n", x);
ok(!strcmp(buffer,"asdf"), "failed\n");
ok( r==4, "return count wrong\n");
ok( r==4, "return count wrong: %d\n", r);
format = "%-1d";
r = sprintf(buffer, format,2);