ICU-4707 Fix some compiler warnings

X-SVN-Rev: 18985
This commit is contained in:
George Rhoten 2006-01-14 09:06:35 +00:00
parent d6a85e5312
commit 16a66a1a44
2 changed files with 1 additions and 5 deletions

View File

@ -2036,9 +2036,6 @@ _res_getTableStringWithFallback(const char *path, const char *locale,
const UChar *item=NULL; const UChar *item=NULL;
UErrorCode errorCode; UErrorCode errorCode;
char explicitFallbackName[ULOC_FULLNAME_CAPACITY] = {0}; char explicitFallbackName[ULOC_FULLNAME_CAPACITY] = {0};
int32_t efnLen =0;
const UChar* ef = NULL;
UBool overrideExplicitFallback = FALSE;
/* /*
* open the bundle for the current locale * open the bundle for the current locale

View File

@ -1,6 +1,6 @@
/* /*
****************************************************************************** ******************************************************************************
* Copyright (C) 1997-2005, International Business Machines Corporation and * * Copyright (C) 1997-2006, International Business Machines Corporation and *
* others. All Rights Reserved. * * others. All Rights Reserved. *
****************************************************************************** ******************************************************************************
* *
@ -2514,7 +2514,6 @@ ures_equal(const UResourceBundle* res1, const UResourceBundle* res2){
} }
U_INTERNAL UResourceBundle* U_EXPORT2 U_INTERNAL UResourceBundle* U_EXPORT2
ures_clone(const UResourceBundle* res, UErrorCode* status){ ures_clone(const UResourceBundle* res, UErrorCode* status){
int32_t pos = 0;
UResourceBundle* bundle = NULL; UResourceBundle* bundle = NULL;
UResourceBundle* ret = NULL; UResourceBundle* ret = NULL;
if(U_FAILURE(*status) || res == NULL){ if(U_FAILURE(*status) || res == NULL){