ICU-990 fix compiler warning

X-SVN-Rev: 5141
This commit is contained in:
Alan Liu 2001-06-29 19:36:36 +00:00
parent bc397ee3f3
commit 34915937bd

View File

@ -650,7 +650,7 @@ UnicodeString& TransliterationRule::toRule(UnicodeString& rule,
UChar segRef[4] = {
0x0020 /* */,
0x0024 /*$*/,
(0x0031 + seg) /*0..9*/,
(UChar) (0x0031 + seg) /*0..9*/,
0x0020 /* */
};
_appendToRule(rule, UnicodeString(FALSE, segRef, 4), TRUE, escapeUnprintable, quoteBuf);