From 0b1da35b77603086efaf27151fad7843c5e36833 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Mon, 26 Mar 2001 23:27:49 +0000 Subject: [PATCH] ICU-900 Fixed some compiler warnings. X-SVN-Rev: 4335 --- icu4c/source/test/intltest/regcoll.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/icu4c/source/test/intltest/regcoll.cpp b/icu4c/source/test/intltest/regcoll.cpp index ca76482a97..dff9a6b72a 100644 --- a/icu4c/source/test/intltest/regcoll.cpp +++ b/icu4c/source/test/intltest/regcoll.cpp @@ -557,12 +557,8 @@ void CollationRegressionTest::Test4078588(/* char *par */) if (result != Collator::LESS) { - UnicodeString msg; - - msg += (UnicodeString)"Compare(a,bb) returned " + result; - msg += "; expected -1"; - - errln(msg); + errln((UnicodeString)"Compare(a,bb) returned " + (int)result + + (UnicodeString)"; expected -1"); } delete rbc;