diff options
| author | jtc <jtc@NetBSD.org> | 1993-11-12 02:25:52 +0000 |
|---|---|---|
| committer | jtc <jtc@NetBSD.org> | 1993-11-12 02:25:52 +0000 |
| commit | dbc9689292c21e5d6065de6864b1bb0c69c35b42 (patch) | |
| tree | 26af35b0b580db7903ee2f0e439c2f0a279ffd80 /gnu/usr.bin/diff/util.c | |
| parent | d8cd41a62ae45621d4ba897dc716c2f24ad9c9e8 (diff) | |
Upgraded to diffutils 2.6.
Diffstat (limited to 'gnu/usr.bin/diff/util.c')
| -rw-r--r-- | gnu/usr.bin/diff/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/diff/util.c b/gnu/usr.bin/diff/util.c index b2fa48d693a..fb4c3c9a596 100644 --- a/gnu/usr.bin/diff/util.c +++ b/gnu/usr.bin/diff/util.c @@ -18,7 +18,7 @@ along with GNU DIFF; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char *rcsid = "$Id: util.c,v 1.4 1993/09/16 17:39:31 jtc Exp $"; +static char *rcsid = "$Id: util.c,v 1.5 1993/11/12 02:26:25 jtc Exp $"; #endif #include "diff.h" @@ -676,7 +676,7 @@ xmalloc (size) value = (VOID *) malloc (size); if (!value) - fatal ("virtual memory exhausted"); + fatal ("memory exhausted"); return value; } @@ -695,7 +695,7 @@ xrealloc (old, size) value = (VOID *) realloc (old, size); if (!value) - fatal ("virtual memory exhausted"); + fatal ("memory exhausted"); return value; } |
