mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-17 18:56:53 +00:00
ICU-8602 Fix some compiler warnings.
X-SVN-Rev: 30231
This commit is contained in:
parent
38a2ac09cc
commit
c2bf97eb02
3 changed files with 5 additions and 4 deletions
|
@ -594,7 +594,7 @@ static void TestConvert()
|
|||
if (!myConverter || U_FAILURE(err))
|
||||
{
|
||||
log_data_err("Error creating the ibm-949 converter - %s \n", u_errorName(err));
|
||||
fclose(ucs_file_name);
|
||||
fclose(ucs_file_in);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -3346,14 +3346,14 @@ TestToUCountPending(){
|
|||
}
|
||||
ucnv_setToUCallBack(cnv, UCNV_TO_U_CALLBACK_STOP, NULL, oldToUAction, NULL, &status);
|
||||
for(i=0; i<LENGTHOF(toUnicodeTests); ++i) {
|
||||
UChar tgt[10];
|
||||
UChar tgt[20];
|
||||
UChar* target = tgt;
|
||||
UChar* targetLimit = target + 20;
|
||||
const char* source = toUnicodeTests[i].input;
|
||||
const char* sourceLimit = source + toUnicodeTests[i].len;
|
||||
int32_t len = 0;
|
||||
ucnv_reset(cnv);
|
||||
ucnv_toUnicode(cnv,&target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
|
||||
ucnv_toUnicode(cnv, &target, targetLimit, &source, sourceLimit, NULL, FALSE, &status);
|
||||
len = ucnv_toUCountPending(cnv,&status);
|
||||
if(U_FAILURE(status)){
|
||||
log_err("ucnv_toUnicode call did not succeed. Error: %s\n", u_errorName(status));
|
||||
|
|
|
@ -901,7 +901,7 @@ static uint32_t testSwitch(tst_strcoll* func, void *collator, int opts, uint32_t
|
|||
realResult = func(collator, opts, first, sLen, second, tLen);
|
||||
realStrength = probeStrength(func, collator, opts, first, sLen, second, tLen, realResult);
|
||||
|
||||
if(strength == UCOL_IDENTICAL && realResult != UCOL_IDENTICAL) {
|
||||
if(strength == UCOL_IDENTICAL && realResult != UCOL_EQUAL) {
|
||||
logFailure(msg, "tailoring", first, sLen, second, tLen, realResult, realStrength, UCOL_EQUAL, strength, error);
|
||||
diffs++;
|
||||
} else if(realResult != UCOL_LESS || realStrength != strength) {
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "uarrsort.h"
|
||||
#include "uinvchar.h"
|
||||
#include "ustr_imp.h"
|
||||
|
||||
/*
|
||||
* Align binary data at a 16-byte offset from the start of the resource bundle,
|
||||
|
|
Loading…
Add table
Reference in a new issue