summaryrefslogtreecommitdiffstats
path: root/isys/nfsmount.c
diff options
context:
space:
mode:
Diffstat (limited to 'isys/nfsmount.c')
-rw-r--r--isys/nfsmount.c2
1 files changed, 1 insertions, 1 deletions
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;