mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-5732 fix some compiler warnings
X-SVN-Rev: 22359
This commit is contained in:
parent
a45ce20a2b
commit
4d320b8e17
1 changed files with 1 additions and 3 deletions
|
@ -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] = '+';
|
||||
|
|
Loading…
Add table
Reference in a new issue