diff options
author | Marek Polacek <mpolacek@redhat.com> | 2011-07-20 12:21:52 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-07-20 12:21:52 -0400 |
commit | 3ff9459622c6ed4449381c0db453c0e5a9c79993 (patch) | |
tree | 53f6f0d3d117c18aca43b67c93dfaa1d0f925862 /intl/dcigettext.c | |
parent | 28b59fca7ae3cfc2d57e0007aaa3793d4b775e97 (diff) |
dcigettext.c: Add missing bracket
Diffstat (limited to 'intl/dcigettext.c')
-rw-r--r-- | intl/dcigettext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intl/dcigettext.c b/intl/dcigettext.c index 16d901e7d0..7f6875006a 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 |