From: Marek Polacek Date: Wed, 20 Jul 2011 16:21:52 +0000 (-0400) Subject: dcigettext.c: Add missing bracket X-Git-Tag: glibc-2.15~446 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ff9459622c6ed4449381c0db453c0e5a9c79993;p=thirdparty%2Fglibc.git dcigettext.c: Add missing bracket --- diff --git a/ChangeLog b/ChangeLog index b453585a908..13def71aadb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-07-20 Marek Polacek + + * intl/dcigettext.c (get_output_charset): Add missing bracket. + 2011-07-20 Andreas Schwab * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for diff --git a/intl/dcigettext.c b/intl/dcigettext.c index 16d901e7d09..7f6875006ad 100644 --- a/intl/dcigettext.c +++ b/intl/dcigettext.c @@ -1,5 +1,5 @@ /* 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. This file is part of the GNU C Library. @@ -1402,7 +1402,7 @@ get_output_charset (domainbinding) return _NL_CURRENT (LC_CTYPE, CODESET); # else # if HAVE_ICONV - extern const char *locale_charset PARAMS ((void); + extern const char *locale_charset PARAMS ((void)); return locale_charset (); # endif # endif