From: Jim Meyering Date: Sun, 18 Apr 1999 23:17:05 +0000 (+0000) Subject: (xalloc_fail): Pass xalloc_msg_memory_exhausted through gettext. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34e6caa67cb1049a3c1b895ccaa45578c6c3d232;p=pspp (xalloc_fail): Pass xalloc_msg_memory_exhausted through gettext. --- diff --git a/lib/xmalloc.c b/lib/xmalloc.c index e865827431..696cf3c9a2 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. */