diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2011-05-10 16:37:14 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2011-05-10 16:37:14 +0000 |
commit | 94335e08421b9ead6445f25725b18e4bb4c5306b (patch) | |
tree | aa7ecf0ddb17e26a23cbe517419e7631777e52d0 | |
parent | c29e693388663aaa42f041965258fa6b6bafc938 (diff) | |
download | cygnal-94335e08421b9ead6445f25725b18e4bb4c5306b.tar.gz cygnal-94335e08421b9ead6445f25725b18e4bb4c5306b.tar.bz2 cygnal-94335e08421b9ead6445f25725b18e4bb4c5306b.zip |
* libc/locale/lmessages.c (_C_messages_locale): Add missing comma.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/locale/lmessages.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 61bcf62eb..b6d83872a 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2011-05-10 Corinna Vinschen <vinschen@redhat.com> + + * libc/locale/lmessages.c (_C_messages_locale): Add missing comma. + 2011-05-04 Yaakov Selkowitz <yselkowitz@users.sourceforge.net> * libc/include/signal.h (psignal): Declare. diff --git a/newlib/libc/locale/lmessages.c b/newlib/libc/locale/lmessages.c index 12373c28e..c5bb9b397 100644 --- a/newlib/libc/locale/lmessages.c +++ b/newlib/libc/locale/lmessages.c @@ -41,7 +41,7 @@ static const struct lc_messages_T _C_messages_locale = { "^[yY]" , /* yesexpr */ "^[nN]" , /* noexpr */ "yes" , /* yesstr */ - "no" /* nostr */ + "no" , /* nostr */ "ASCII" /* codeset */ #ifdef __HAVE_LOCALE_INFO_EXTENDED__ , L"^[yY]" , /* wyesexpr */ |