mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-4707 Fix some compiler warnings
X-SVN-Rev: 19641
This commit is contained in:
parent
9d357b5a09
commit
62a3de084a
2 changed files with 3 additions and 3 deletions
|
@ -489,7 +489,7 @@ struct SResource* table_open(struct SRBRoot *bundle, char *tag, const struct US
|
|||
return res;
|
||||
}
|
||||
|
||||
struct SResource* array_open(struct SRBRoot *bundle, char *tag, const struct UString* comment, UErrorCode *status) {
|
||||
struct SResource* array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) {
|
||||
|
||||
struct SResource *res = res_open(comment, status);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
*
|
||||
* Copyright (C) 2000-2005, International Business Machines
|
||||
* Copyright (C) 2000-2006, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
*******************************************************************************
|
||||
|
@ -85,7 +85,7 @@ struct SResArray {
|
|||
struct SResource *fLast;
|
||||
};
|
||||
|
||||
struct SResource* array_open(struct SRBRoot *bundle, char *tag, const struct UString* comment, UErrorCode *status);
|
||||
struct SResource* array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status);
|
||||
void array_close(struct SResource *array, UErrorCode *status);
|
||||
void array_add(struct SResource *array, struct SResource *res, UErrorCode *status);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue