Module: wine Branch: master Commit: e974731117415b75a904a830d977ab994f76c136 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e974731117415b75a904a830d9...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Sep 27 09:49:35 2016 +0200
user32/tests: Remove two commented out printf().
Signed-off-by: Michael Stefaniuc mstefani@redhat.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/user32/tests/wsprintf.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/dlls/user32/tests/wsprintf.c b/dlls/user32/tests/wsprintf.c index 15e4af0..f0e80b2 100644 --- a/dlls/user32/tests/wsprintf.c +++ b/dlls/user32/tests/wsprintf.c @@ -119,7 +119,6 @@ static void CharUpperTest(void) for (i=0;i<256;i++) { out = (INT_PTR)CharUpperA((LPSTR)i); - /* printf("%0x ",out); */ if ((out >> 16) != 0) { failed = TRUE; @@ -137,7 +136,6 @@ static void CharLowerTest(void) for (i=0;i<256;i++) { out = (INT_PTR)CharLowerA((LPSTR)i); - /* printf("%0x ",out); */ if ((out >> 16) != 0) { failed = TRUE;