mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-3500 Fix some compiler warnings
X-SVN-Rev: 15406
This commit is contained in:
parent
cb65962ab6
commit
319c409205
4 changed files with 8 additions and 10 deletions
|
@ -527,7 +527,7 @@ static void TestSimpleResourceInfo() {
|
|||
log_err(" ISO-3 Country code mismatch: %s versus %s\n", austrdup(expected),
|
||||
austrdup(dataTable[CTRY3][i]));
|
||||
}
|
||||
sprintf(temp2, "%x", uloc_getLCID(testLocale));
|
||||
sprintf(temp2, "%x", (int)uloc_getLCID(testLocale));
|
||||
if (strcmp(temp2, rawData2[LCID][i]) != 0) {
|
||||
log_err("LCID mismatch: %s versus %s\n", temp2 , rawData2[LCID][i]);
|
||||
}
|
||||
|
|
|
@ -934,7 +934,7 @@ static void TestGetKeywordValues(void) {
|
|||
|
||||
log_verbose("Testing getting collation keyword values:\n");
|
||||
|
||||
while(kw=uenum_next(kwVals, NULL, &status)) {
|
||||
while((kw=uenum_next(kwVals, NULL, &status))) {
|
||||
log_verbose(" %s\n", kw);
|
||||
if(!strcmp(kw,"standard")) {
|
||||
if(foundStandard == FALSE) {
|
||||
|
@ -957,7 +957,7 @@ static void TestGetKeywordValues(void) {
|
|||
|
||||
log_verbose("Testing getting calendar keyword values:\n");
|
||||
|
||||
while(kw=uenum_next(kwVals, NULL, &status)) {
|
||||
while((kw=uenum_next(kwVals, NULL, &status))) {
|
||||
log_verbose(" %s\n", kw);
|
||||
if(!strcmp(kw,"standard")) {
|
||||
if(foundStandard == FALSE) {
|
||||
|
|
|
@ -1310,8 +1310,6 @@ static void TestGetVersion(){
|
|||
int i=0, j = 0;
|
||||
int locCount = uloc_countAvailable();
|
||||
const char *locName = "root";
|
||||
const UChar* rules =NULL;
|
||||
int32_t len = 0;
|
||||
|
||||
log_verbose("The ures_getVersion tests begin : \n");
|
||||
|
||||
|
|
|
@ -115,11 +115,11 @@ void addTestConverterFallBack(TestNode** root)
|
|||
|
||||
static void setNuConvTestName(const char *codepage, const char *direction)
|
||||
{
|
||||
sprintf(gNuConvTestName, "[Testing %s %s Unicode, InputBufSiz=%d, OutputBufSiz=%d]",
|
||||
codepage,
|
||||
direction,
|
||||
gInBufferSize,
|
||||
gOutBufferSize);
|
||||
sprintf(gNuConvTestName, "[Testing %s %s Unicode, InputBufSiz=%d, OutputBufSiz=%d]",
|
||||
codepage,
|
||||
direction,
|
||||
(int)gInBufferSize,
|
||||
(int)gOutBufferSize);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue