ICU-5732 fix some compiler warnings

X-SVN-Rev: 22359
This commit is contained in:
Matitiahu Allouche 2007-08-12 08:01:40 +00:00
parent a45ce20a2b
commit 4d320b8e17

View file

@ -429,9 +429,7 @@ static void printCaseInfo(UBiDi *bidi, const char *src, const char *dst)
log_err("Processed length: %d", length); fputs("\n", stderr);
for (i = 0; i < length; i++) {
lev = levels[i];
if (lev < 0) {
levelChars[i] = '-';
} else if (lev < sizeof(columns)) {
if (lev < sizeof(columns)) {
levelChars[i] = columns[lev];
} else {
levelChars[i] = '+';