diff options
author | Jim Meyering <jim@meyering.net> | 1999-04-18 23:17:05 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-04-18 23:17:05 +0000 |
commit | 4e8d80cad7466a9cb8b99a0dc3921c832867876e (patch) | |
tree | e2768a61ef16bf91504356727f7919db6600ba2d | |
parent | a1d8c3855368b4281c455e0f866b6d55ba2ca177 (diff) | |
download | coreutils-4e8d80cad7466a9cb8b99a0dc3921c832867876e.tar.xz |
(xalloc_fail): Pass xalloc_msg_memory_exhausted through gettext.
-rw-r--r-- | lib/xmalloc.c | 2 |
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. */ |