From 4e8d80cad7466a9cb8b99a0dc3921c832867876e Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 18 Apr 1999 23:17:05 +0000 Subject: (xalloc_fail): Pass xalloc_msg_memory_exhausted through gettext. --- lib/xmalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmalloc.c b/lib/xmalloc.c index e86582743..696cf3c9a 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -70,7 +70,7 @@ xalloc_fail (void) { 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. */ -- cgit v1.2.3-54-g00ecf