From a12da4ee65e0d140bbbcb811eef1cba93785ce35 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 24 Sep 2001 20:13:57 +0000 Subject: _( -> GT_( svn path=/trunk/; revision=3478 --- xmalloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmalloc.c') diff --git a/xmalloc.c b/xmalloc.c index 4cd9d40e..74365586 100644 --- a/xmalloc.c +++ b/xmalloc.c @@ -29,7 +29,7 @@ xmalloc (int n) p = (XMALLOCTYPE *) malloc(n); if (p == (XMALLOCTYPE *) 0) { - report(stderr, _("malloc failed\n")); + report(stderr, GT_("malloc failed\n")); exit(PS_UNDEFINED); } return(p); @@ -43,7 +43,7 @@ xrealloc (XMALLOCTYPE *p, int n) p = (XMALLOCTYPE *) realloc(p, n); if (p == (XMALLOCTYPE *) 0) { - report(stderr, _("realloc failed\n")); + report(stderr, GT_("realloc failed\n")); exit(PS_UNDEFINED); } return p; -- cgit v1.2.3