From abbc89ec6bf7f03c2d0e3dd4b1524226b8909675 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 3 Dec 2002 20:52:03 +0000 Subject: we really want perror here --- isys/nfsmount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'isys/nfsmount.c') diff --git a/isys/nfsmount.c b/isys/nfsmount.c index 1b2ec1cea..2262fed35 100644 --- a/isys/nfsmount.c +++ b/isys/nfsmount.c @@ -122,7 +122,7 @@ nfsxmalloc(size_t size) void *ptr = malloc(size); if (!ptr) { - error("Out of memory"); + perror("Out of memory"); exit(1); } return ptr; -- cgit