From f937e91bfd19b90c876157d75a52db0776f549a2 Mon Sep 17 00:00:00 2001 From: "cata%netscape.com" Date: Thu, 25 Feb 1999 14:46:46 +0000 Subject: [PATCH] Small output format change. git-svn-id: svn://10.0.0.236/trunk@21890 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/intl/uconv/tests/nsTestUConv.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/intl/uconv/tests/nsTestUConv.cpp b/mozilla/intl/uconv/tests/nsTestUConv.cpp index c9c79dcd0b6..4b58e682fea 100644 --- a/mozilla/intl/uconv/tests/nsTestUConv.cpp +++ b/mozilla/intl/uconv/tests/nsTestUConv.cpp @@ -894,13 +894,13 @@ nsresult testPlatformCharset() nsString value; res = cinfo->GetCharset(kPlatformCharsetSel_PlainTextInClipboard , value); - printf("Clipboard plain text encoding = %s\n\n",value.ToNewCString()); + printf("Clipboard plain text encoding = %s\n",value.ToNewCString()); res = cinfo->GetCharset(kPlatformCharsetSel_FileName , value); - printf("File Name encoding = %s\n\n",value.ToNewCString()); + printf("File Name encoding = %s\n",value.ToNewCString()); res = cinfo->GetCharset(kPlatformCharsetSel_Menu , value); - printf("Menu encoding = %s\n\n",value.ToNewCString()); + printf("Menu encoding = %s\n",value.ToNewCString()); cinfo->Release(); return res;