diff options
Diffstat (limited to 'locale')
-rw-r--r-- | locale/programs/localedef.c | 4 | ||||
-rw-r--r-- | locale/programs/locarchive.c | 16 |
2 files changed, 5 insertions, 15 deletions
diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c index 06fca12094..c8da20b813 100644 --- a/locale/programs/localedef.c +++ b/locale/programs/localedef.c @@ -504,9 +504,7 @@ construct_output_path (char *path) names. Normalization allows the user to use any of the common names. */ static const char * -normalize_codeset (codeset, name_len) - const char *codeset; - size_t name_len; +normalize_codeset (const char *codeset, size_t name_len) { int len = 0; int only_digit = 1; diff --git a/locale/programs/locarchive.c b/locale/programs/locarchive.c index 49f7f1b3cf..345f9b70e2 100644 --- a/locale/programs/locarchive.c +++ b/locale/programs/locarchive.c @@ -1127,11 +1127,8 @@ add_locale (struct locarhandle *ah, of the files if necessary. Add all the names, possibly overwriting old files. */ int -add_locale_to_archive (ah, name, data, replace) - struct locarhandle *ah; - const char *name; - locale_data_t data; - bool replace; +add_locale_to_archive (struct locarhandle *ah, const char *name, + locale_data_t data, bool replace) { char *normalized_name = NULL; uint32_t locrec_offset; @@ -1329,10 +1326,7 @@ add_locale_to_archive (ah, name, data, replace) int -add_locales_to_archive (nlist, list, replace) - size_t nlist; - char *list[]; - bool replace; +add_locales_to_archive (size_t nlist, char *list[], bool replace) { struct locarhandle ah; int result = 0; @@ -1529,9 +1523,7 @@ add_locales_to_archive (nlist, list, replace) int -delete_locales_from_archive (nlist, list) - size_t nlist; - char *list[]; +delete_locales_from_archive (size_t nlist, char *list[]) { struct locarhandle ah; struct locarhead *head; |