mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-4707 Fix some compiler warnings
X-SVN-Rev: 18752
This commit is contained in:
parent
e87e455366
commit
db2b1d1b3f
3 changed files with 5 additions and 5 deletions
|
@ -1149,7 +1149,7 @@ struct UText {
|
|||
|
||||
UBool bPadding1, bPadding2, bPadding3; /* pad UBools to 32 bit boudary */
|
||||
|
||||
int32_t iPadding; /* pad int32 fields out to a 64 bit boudary.
|
||||
int32_t iPadding; /* pad int32 fields out to a 64 bit boudary. */
|
||||
|
||||
/**
|
||||
* (public) Function pointer for UTextClone
|
||||
|
|
|
@ -973,7 +973,7 @@ static void TestRegexCAPI(void) {
|
|||
|
||||
}
|
||||
|
||||
void TestBug4315() {
|
||||
void TestBug4315(void) {
|
||||
UErrorCode theICUError = U_ZERO_ERROR;
|
||||
URegularExpression *theRegEx;
|
||||
UChar *textBuff;
|
||||
|
|
|
@ -86,7 +86,7 @@ static void TestAPI(void) {
|
|||
/* utext_clone() */
|
||||
{
|
||||
UChar uString[] = {0x41, 0x42, 0x43, 0};
|
||||
int32_t len;
|
||||
int64_t len;
|
||||
UText *uta;
|
||||
UText *utb;
|
||||
|
||||
|
@ -108,9 +108,9 @@ static void TestAPI(void) {
|
|||
UChar uString[] = {0x41, 0x42, 0x43, 0};
|
||||
UText *uta;
|
||||
UChar32 c;
|
||||
int32_t len;
|
||||
int64_t len;
|
||||
UBool b;
|
||||
int32_t i;
|
||||
int64_t i;
|
||||
|
||||
status = U_ZERO_ERROR;
|
||||
uta = utext_openUChars(NULL, uString, -1, &status);
|
||||
|
|
Loading…
Add table
Reference in a new issue