ICU-8602 Fix some compiler warnings.
X-SVN-Rev: 30231
This commit is contained in:
parent
38a2ac09cc
commit
c2bf97eb02
@ -594,7 +594,7 @@ static void TestConvert()
|
|||||||
if (!myConverter || U_FAILURE(err))
|
if (!myConverter || U_FAILURE(err))
|
||||||
{
|
{
|
||||||
log_data_err("Error creating the ibm-949 converter - %s \n", u_errorName(err));
|
log_data_err("Error creating the ibm-949 converter - %s \n", u_errorName(err));
|
||||||
fclose(ucs_file_name);
|
fclose(ucs_file_in);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3346,14 +3346,14 @@ TestToUCountPending(){
|
|||||||
}
|
}
|
||||||
ucnv_setToUCallBack(cnv, UCNV_TO_U_CALLBACK_STOP, NULL, oldToUAction, NULL, &status);
|
ucnv_setToUCallBack(cnv, UCNV_TO_U_CALLBACK_STOP, NULL, oldToUAction, NULL, &status);
|
||||||
for(i=0; i<LENGTHOF(toUnicodeTests); ++i) {
|
for(i=0; i<LENGTHOF(toUnicodeTests); ++i) {
|
||||||
UChar tgt[10];
|
UChar tgt[20];
|
||||||
UChar* target = tgt;
|
UChar* target = tgt;
|
||||||
UChar* targetLimit = target + 20;
|
UChar* targetLimit = target + 20;
|
||||||
const char* source = toUnicodeTests[i].input;
|
const char* source = toUnicodeTests[i].input;
|
||||||
const char* sourceLimit = source + toUnicodeTests[i].len;
|
const char* sourceLimit = source + toUnicodeTests[i].len;
|
||||||
int32_t len = 0;
|
int32_t len = 0;
|
||||||
ucnv_reset(cnv);
|
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);
|
len = ucnv_toUCountPending(cnv,&status);
|
||||||
if(U_FAILURE(status)){
|
if(U_FAILURE(status)){
|
||||||
log_err("ucnv_toUnicode call did not succeed. Error: %s\n", u_errorName(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);
|
realResult = func(collator, opts, first, sLen, second, tLen);
|
||||||
realStrength = probeStrength(func, collator, opts, first, sLen, second, tLen, realResult);
|
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);
|
logFailure(msg, "tailoring", first, sLen, second, tLen, realResult, realStrength, UCOL_EQUAL, strength, error);
|
||||||
diffs++;
|
diffs++;
|
||||||
} else if(realResult != UCOL_LESS || realStrength != strength) {
|
} else if(realResult != UCOL_LESS || realStrength != strength) {
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
|
|
||||||
#include "uarrsort.h"
|
#include "uarrsort.h"
|
||||||
#include "uinvchar.h"
|
#include "uinvchar.h"
|
||||||
|
#include "ustr_imp.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Align binary data at a 16-byte offset from the start of the resource bundle,
|
* Align binary data at a 16-byte offset from the start of the resource bundle,
|
||||||
|
Loading…
Reference in New Issue
Block a user