ICU-900 Fixed some compiler warnings on Solaris

X-SVN-Rev: 4762
This commit is contained in:
George Rhoten 2001-05-22 22:31:00 +00:00
parent 152b11f484
commit c032fe0e1f

View File

@ -1273,7 +1273,7 @@ static void bug1()
static char char_out[CHUNK_SIZE*2];
/* GB 18030 equivalent of U+10000 is 90308130 */
static const char test_seq[]={ 0x90u, 0x30, 0x81u, 0x30 };
static const char test_seq[]={ (char)0x90u, 0x30, (char)0x81u, 0x30 };
UErrorCode err = U_ZERO_ERROR;
int32_t i, test_seq_len = sizeof(test_seq);