summaryrefslogtreecommitdiff
path: root/lib/xmalloc.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-04-18 23:17:05 +0000
committerJim Meyering <jim@meyering.net>1999-04-18 23:17:05 +0000
commit4e8d80cad7466a9cb8b99a0dc3921c832867876e (patch)
treee2768a61ef16bf91504356727f7919db6600ba2d /lib/xmalloc.c
parenta1d8c3855368b4281c455e0f866b6d55ba2ca177 (diff)
downloadcoreutils-4e8d80cad7466a9cb8b99a0dc3921c832867876e.tar.xz
(xalloc_fail): Pass xalloc_msg_memory_exhausted through gettext.
Diffstat (limited to 'lib/xmalloc.c')
-rw-r--r--lib/xmalloc.c2
1 files changed, 1 insertions, 1 deletions
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. */