From 030f40632e72b90ae74d1be8d4f66280e457fcb6 Mon Sep 17 00:00:00 2001 From: Austin English Date: Sat, 20 Sep 2008 19:26:43 -0500 Subject: [PATCH] msvcrt: update comments in a test --- dlls/msvcrt/tests/scanf.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/msvcrt/tests/scanf.c b/dlls/msvcrt/tests/scanf.c index b152eac..ba7038f 100644 --- a/dlls/msvcrt/tests/scanf.c +++ b/dlls/msvcrt/tests/scanf.c @@ -63,6 +63,7 @@ static void test_sscanf( void ) ok( sscanf("1233", "%p", &ptr) == 1, "sscanf failed\n" ); ok( ptr == (void *)0x1233,"sscanf reads %p instead of %x\n", ptr, 0x1233 ); + /* check %P with no hex digits */ ok( sscanf("1234", "%P", &ptr) == 1, "sscanf failed\n" ); ok( ptr == (void *)0x1234,"sscanf reads %p instead of %x\n", ptr, 0x1234 ); -- 1.5.4.3