From 18177bc8a7460c6a920f641d523648820de00cd8 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Mon, 1 Dec 2003 06:21:08 +0000 Subject: [PATCH] ICU-3222 Fix some compiler warnings. X-SVN-Rev: 13907 --- icu4c/source/test/intltest/numfmtst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/test/intltest/numfmtst.cpp b/icu4c/source/test/intltest/numfmtst.cpp index c4ebf62fa46..2dc77a960bf 100644 --- a/icu4c/source/test/intltest/numfmtst.cpp +++ b/icu4c/source/test/intltest/numfmtst.cpp @@ -372,7 +372,7 @@ static void setFromString(DigitList& dl, const char* str) { char c; UBool decimalSet = FALSE; dl.clear(); - while (c = *str++) { + while ((c = *str++)) { if (c == '-') { dl.fIsPositive = FALSE; } else if (c == '+') {