mirror of git://sourceware.org/git/glibc.git
dcigettext.c: Add missing bracket
This commit is contained in:
parent
28b59fca7a
commit
3ff9459622
|
|
@ -1,3 +1,7 @@
|
||||||
|
2011-07-20 Marek Polacek <mpolacek@redhat.com>
|
||||||
|
|
||||||
|
* intl/dcigettext.c (get_output_charset): Add missing bracket.
|
||||||
|
|
||||||
2011-07-20 Andreas Schwab <schwab@redhat.com>
|
2011-07-20 Andreas Schwab <schwab@redhat.com>
|
||||||
|
|
||||||
* resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
|
* resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/* Implementation of the internal dcigettext function.
|
/* Implementation of the internal dcigettext function.
|
||||||
Copyright (C) 1995-2005, 2006, 2007, 2008, 2009
|
Copyright (C) 1995-2005, 2006, 2007, 2008, 2009, 2011
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
|
|
@ -1402,7 +1402,7 @@ get_output_charset (domainbinding)
|
||||||
return _NL_CURRENT (LC_CTYPE, CODESET);
|
return _NL_CURRENT (LC_CTYPE, CODESET);
|
||||||
# else
|
# else
|
||||||
# if HAVE_ICONV
|
# if HAVE_ICONV
|
||||||
extern const char *locale_charset PARAMS ((void);
|
extern const char *locale_charset PARAMS ((void));
|
||||||
return locale_charset ();
|
return locale_charset ();
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue