From: Bruno Haible Date: Sun, 11 Mar 2001 20:26:30 +0000 (+0000) Subject: Unify messages. X-Git-Tag: v0.10.36~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e6d885c2d4357673fb30d032830cb0c1d83f2a6;p=thirdparty%2Fgettext.git Unify messages. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index de7bc491a..2eff66d44 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2001-03-11 Bruno Haible + + * xmalloc.c (fixup_null_alloc): Unify messages. + 2001-03-10 Bruno Haible * linebreak.c (iconv_string_length): Don't call diff --git a/lib/xmalloc.c b/lib/xmalloc.c index 5b4d12801..8e5df0f09 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -1,5 +1,5 @@ /* xmalloc.c -- malloc with out of memory checking - Copyright (C) 1990-1996, 2000 Free Software Foundation, Inc. + Copyright (C) 1990-1996, 2000, 2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -83,7 +83,7 @@ fixup_null_alloc (n) if (n == 0) p = malloc ((size_t) 1); if (p == NULL) - error (xmalloc_exit_failure, 0, _("Memory exhausted")); + error (xmalloc_exit_failure, 0, _("memory exhausted")); return p; }