diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-12-20 16:14:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-12-20 16:14:06 +0000 |
commit | 8da21f96b56d22f255d09b9dc62ada7fe8fe03a8 (patch) | |
tree | 3fa0aac96b28ea2d0d15cdea1f8d692b211181ba /iconv/gconv_conf.c | |
parent | b7cc4503da2eaa9aebb6d5a2fec33c3fdb0cf79e (diff) | |
download | glibc-8da21f96b56d22f255d09b9dc62ada7fe8fe03a8.tar.gz |
* iconv/gconv_conf.c (builtin_aliases): Mark as const.
* iconv/gconv_open.c (internal_trans_names): Likewise.
Diffstat (limited to 'iconv/gconv_conf.c')
-rw-r--r-- | iconv/gconv_conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iconv/gconv_conf.c b/iconv/gconv_conf.c index 858d40998b..37179518ba 100644 --- a/iconv/gconv_conf.c +++ b/iconv/gconv_conf.c @@ -1,5 +1,5 @@ /* Handle configuration data. - Copyright (C) 1997,98,99,2000,2001,2002,2003 Free Software Foundation, Inc. + Copyright (C) 1997-2003, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -78,7 +78,7 @@ static struct gconv_module builtin_modules[] = #undef BUILTIN_ALIAS }; -static const char *builtin_aliases[] = +static const char *const builtin_aliases[] = { #define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, BtowcFct, \ MinF, MaxF, MinT, MaxT) |