mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-3500 Fix some compiler warnings.
X-SVN-Rev: 14840
This commit is contained in:
parent
4b44c2c1f1
commit
937c5cbe2b
1 changed files with 1 additions and 1 deletions
|
@ -1642,7 +1642,7 @@ The leftmost codepage (.xxx) wins.
|
|||
|
||||
if ((q = uprv_strchr(p, '.')) != NULL) {
|
||||
/* How big will the resulting string be? */
|
||||
len = uprv_strlen(correctedPOSIXLocale) + (q-p);
|
||||
len = (int32_t)(uprv_strlen(correctedPOSIXLocale) + (q-p));
|
||||
uprv_strncat(correctedPOSIXLocale, p, q-p);
|
||||
correctedPOSIXLocale[len] = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue