summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-03-11 20:26:30 +0000
committerBruno Haible <bruno@clisp.org>2001-03-11 20:26:30 +0000
commit9e6d885c2d4357673fb30d032830cb0c1d83f2a6 (patch)
tree80331cbccd4e5a863456285b62a81623908180f9
parent6b0fa79817adba9f9743faf95be619e94141ec67 (diff)
downloadexternal_gettext-9e6d885c2d4357673fb30d032830cb0c1d83f2a6.zip
external_gettext-9e6d885c2d4357673fb30d032830cb0c1d83f2a6.tar.gz
external_gettext-9e6d885c2d4357673fb30d032830cb0c1d83f2a6.tar.bz2
Unify messages.
-rw-r--r--lib/ChangeLog4
-rw-r--r--lib/xmalloc.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index de7bc49..2eff66d 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -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
diff --git a/lib/xmalloc.c b/lib/xmalloc.c
index 5b4d128..8e5df0f 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;
}