]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Unify messages.
authorBruno Haible <bruno@clisp.org>
Sun, 11 Mar 2001 20:26:30 +0000 (20:26 +0000)
committerBruno Haible <bruno@clisp.org>
Sun, 11 Mar 2001 20:26:30 +0000 (20:26 +0000)
lib/ChangeLog
lib/xmalloc.c

index de7bc491a8d5f0057dff1a624576de71b682202c..2eff66d4487077499d617cdace036c0f5d48b3f6 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-11  Bruno Haible  <haible@clisp.cons.org>
+
+       * xmalloc.c (fixup_null_alloc): Unify messages.
+
 2001-03-10  Bruno Haible  <haible@clisp.cons.org>
 
        * linebreak.c (iconv_string_length): Don't call
index 5b4d12801939ea2c422e44151eefbd7f20df2e61..8e5df0f09e96ef6a9d31cce794a8438ec186c434 100644 (file)
@@ -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;
 }