diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-23 22:50:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-23 22:50:17 +0000 |
commit | d74e76f9f6b05428358a6248ac506dc38c323c7e (patch) | |
tree | fcaf79e75b038c550015f200838057561e17308e /malloc | |
parent | 8ba3c7d939fd02e4bef1f311d941fc04bf5e19e8 (diff) | |
download | glibc-d74e76f9f6b05428358a6248ac506dc38c323c7e.tar.gz glibc-d74e76f9f6b05428358a6248ac506dc38c323c7e.tar.xz glibc-d74e76f9f6b05428358a6248ac506dc38c323c7e.zip |
Update.
* sunrpc/rpc_main.c (open_output): Allow better translation of error message. (close_output): Likewise. * locale/programs/localedef.c: Unify messages. * malloc/obstack.c: Likewise. Suggested by Vladimir Michl <Vladimir.Michl@upol.cz>.
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/obstack.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/malloc/obstack.c b/malloc/obstack.c index 76b7a95cd4..17c6313431 100644 --- a/malloc/obstack.c +++ b/malloc/obstack.c @@ -1,5 +1,5 @@ /* obstack.c - subroutines used implicitly by object stack macros - Copyright (C) 1988,89,90,91,92,93,94,96,97,98 Free Software Foundation, Inc. + Copyright (C) 1988-1994,96,97,98,99 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. The master source lives in /gd/gnu/lib. @@ -468,7 +468,8 @@ _obstack_memory_used (h) static void print_and_abort () { - fputs (_("memory exhausted\n"), stderr); + fputs (_("memory exhausted"), stderr); + fputc ('\n', stderr); exit (obstack_exit_failure); } |