diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 20:13:57 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-09-24 20:13:57 +0000 |
commit | a12da4ee65e0d140bbbcb811eef1cba93785ce35 (patch) | |
tree | c549258dcd9b8d2848da3135cb86d51c75138097 /xmalloc.c | |
parent | f5ece9304c6f778f8888860b50d431dca147074c (diff) | |
download | fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.gz fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.bz2 fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.zip |
_( -> GT_(
svn path=/trunk/; revision=3478
Diffstat (limited to 'xmalloc.c')
-rw-r--r-- | xmalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |