changeset 1784:5afbb5279fd5

(xalloc_fail): Pass xalloc_msg_memory_exhausted through gettext.
author Jim Meyering <jim@meyering.net>
date Sun, 18 Apr 1999 23:17:05 +0000
parents dce035e2a186
children 197f4bdf9a3d
files lib/xmalloc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -70,7 +70,7 @@
 {
   if (xalloc_fail_func)
     (*xalloc_fail_func) ();
-  error (xalloc_exit_failure, 0, "%s", xalloc_msg_memory_exhausted);
+  error (xalloc_exit_failure, 0, "%s", _(xalloc_msg_memory_exhausted));
 }
 
 /* Allocate N bytes of memory dynamically, with error checking.  */