ICU-3222 Fix some compiler warnings.

X-SVN-Rev: 13907
This commit is contained in:
George Rhoten 2003-12-01 06:21:08 +00:00
parent 79d6c8fd5e
commit 18177bc8a7

View file

@ -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 == '+') {