Commit e9747311 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

user32/tests: Remove two commented out printf().

parent 0aa7d402
......@@ -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;
......
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