mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-4707 Fix some compiler warnings.
X-SVN-Rev: 19637
This commit is contained in:
parent
36e78e6d21
commit
a33e2d37a9
1 changed files with 3 additions and 3 deletions
|
@ -823,10 +823,10 @@ findSetMatch( UScriptCode *scriptCodes, int32_t scriptsLen,
|
|||
}
|
||||
if(existsInScript == FALSE){
|
||||
for( j = 0; j < scriptsLen; j++){
|
||||
UChar pattern[500]={'\0'};
|
||||
UChar toPattern[500]={'\0'};
|
||||
char pat[500]={'\0'};
|
||||
int32_t len = uset_toPattern(scripts[i], pattern, 500, TRUE, &status);
|
||||
len = myUCharsToChars(pattern, pat, len);
|
||||
int32_t len = uset_toPattern(scripts[i], toPattern, 500, TRUE, &status);
|
||||
len = myUCharsToChars(toPattern, pat, len);
|
||||
log_err("uset_indexOf(\\u%04X)=%i uset_indexOf(\\u%04X)=%i\n", start, uset_indexOf(scripts[0], start), end, uset_indexOf(scripts[0], end));
|
||||
if(len!=-1){
|
||||
log_err("Pattern: %s\n",pat);
|
||||
|
|
Loading…
Add table
Reference in a new issue