ICU-4707 Fix some compiler warnings.

X-SVN-Rev: 19885
This commit is contained in:
George Rhoten 2006-07-25 02:52:22 +00:00
parent 58f1b8d32a
commit 4397926a33
4 changed files with 12 additions and 10 deletions

View File

@ -3077,9 +3077,11 @@ compareNames(const char **names) {
relation=*names++; relation=*names++;
if(*relation=='=') { if(*relation=='=') {
rel=0; rel = 0;
} else if(*relation=='<') { } else if(*relation=='<') {
rel=-1; rel = -1;
} else {
rel = 1;
} }
name1=*names++; name1=*names++;

View File

@ -4689,7 +4689,7 @@ TestJ4960(void)
static void static void
TestJ5223(void) TestJ5223(void)
{ {
char *test = "this is a test string"; static const char *test = "this is a test string";
UChar ustr[256]; UChar ustr[256];
int32_t ustr_length = u_unescape(test, ustr, 256); int32_t ustr_length = u_unescape(test, ustr, 256);
unsigned char sortkey[256]; unsigned char sortkey[256];

View File

@ -97,7 +97,7 @@ static void TestNumberFormat()
int32_t resultlength; int32_t resultlength;
int32_t resultlengthneeded; int32_t resultlengthneeded;
int32_t parsepos; int32_t parsepos;
double d1; double d1 = -1.0;
int32_t l1; int32_t l1;
double d = -10456.37; double d = -10456.37;
double a = 1234.56, a1 = 1235.0; double a = 1234.56, a1 = 1235.0;

View File

@ -285,7 +285,7 @@ static void Test_UChar_UTF8_API(void){
u8Target = (char*) malloc (sizeof(uint8_t) * (u8DestLen+1)); u8Target = (char*) malloc (sizeof(uint8_t) * (u8DestLen+1));
u8TargetLength = u8DestLen; u8TargetLength = u8DestLen;
u8Target[u8TargetLength] = 0xfe; u8Target[u8TargetLength] = (char)0xfe;
u8DestLen = -1; u8DestLen = -1;
u_strToUTF8(u8Target,u8TargetLength, &u8DestLen, uSrc, uSrcLen,&err); u_strToUTF8(u8Target,u8TargetLength, &u8DestLen, uSrc, uSrcLen,&err);
if(U_FAILURE(err) || u8DestLen != u8TargetLength || u8Target[u8TargetLength] != (char)0xfe){ if(U_FAILURE(err) || u8DestLen != u8TargetLength || u8Target[u8TargetLength] != (char)0xfe){
@ -497,7 +497,7 @@ static void Test_UChar_UTF8_API(void){
/* to UTF-8 with length */ /* to UTF-8 with length */
err=U_ZERO_ERROR; err=U_ZERO_ERROR;
numSubstitutions=-1; numSubstitutions=-1;
out8[0]=0xf5; out8[0]=(char)0xf5;
u8DestLen=0; u8DestLen=0;
u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen, u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen,
withTrail16, u_strlen(withTrail16), withTrail16, u_strlen(withTrail16),
@ -512,7 +512,7 @@ static void Test_UChar_UTF8_API(void){
/* to UTF-8 with NUL termination */ /* to UTF-8 with NUL termination */
err=U_ZERO_ERROR; err=U_ZERO_ERROR;
numSubstitutions=-1; numSubstitutions=-1;
out8[0]=0xf5; out8[0]=(char)0xf5;
u8DestLen=0; u8DestLen=0;
u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen, u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen,
withTrail16, -1, withTrail16, -1,
@ -527,7 +527,7 @@ static void Test_UChar_UTF8_API(void){
/* preflight to UTF-8 with NUL termination */ /* preflight to UTF-8 with NUL termination */
err=U_ZERO_ERROR; err=U_ZERO_ERROR;
numSubstitutions=-1; numSubstitutions=-1;
out8[0]=0xf5; out8[0]=(char)0xf5;
u8DestLen=0; u8DestLen=0;
u_strToUTF8WithSub(out8, 1, &u8DestLen, u_strToUTF8WithSub(out8, 1, &u8DestLen,
withTrail16, -1, withTrail16, -1,
@ -558,7 +558,7 @@ static void Test_UChar_UTF8_API(void){
/* to UTF-8 with length (just first UChar which is valid) */ /* to UTF-8 with length (just first UChar which is valid) */
err=U_ZERO_ERROR; err=U_ZERO_ERROR;
numSubstitutions=-1; numSubstitutions=-1;
out8[0]=0xf5; out8[0]=(char)0xf5;
u8DestLen=0; u8DestLen=0;
u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen, u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen,
withTrail16, 1, withTrail16, 1,
@ -590,7 +590,7 @@ static void Test_UChar_UTF8_API(void){
/* to UTF-8 with length (just first UChar which is valid) */ /* to UTF-8 with length (just first UChar which is valid) */
err=U_ZERO_ERROR; err=U_ZERO_ERROR;
numSubstitutions=-1; numSubstitutions=-1;
out8[0]=0xf5; out8[0]=(char)0xf5;
u8DestLen=0; u8DestLen=0;
u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen, u_strToUTF8WithSub(out8, LENGTHOF(out8), &u8DestLen,
withTrail16, 1, withTrail16, 1,