mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-4707 Fix some compiler warnings.
X-SVN-Rev: 20164
This commit is contained in:
parent
331a0bd518
commit
cff652fc45
1 changed files with 1 additions and 1 deletions
|
@ -1109,7 +1109,7 @@ UConverter_toUnicode_ISCII_OFFSETS_LOGIC(UConverterToUnicodeArgs *args,
|
|||
data->currentDeltaToUnicode =
|
||||
(uint16_t)(lookupTable[sourceChar & 0x0F][0] * DELTA);
|
||||
data->currentMaskToUnicode =
|
||||
lookupTable[sourceChar & 0x0F][1] ;
|
||||
(MaskEnum)lookupTable[sourceChar & 0x0F][1] ;
|
||||
}
|
||||
else if(sourceChar==DEF){
|
||||
/* switch back to default */
|
||||
|
|
Loading…
Add table
Reference in a new issue