summaryrefslogtreecommitdiffstats
path: root/isys/nfsmount.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-03 20:52:03 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-03 20:52:03 +0000
commitabbc89ec6bf7f03c2d0e3dd4b1524226b8909675 (patch)
tree06f1e55104557984db1d724eebea770bce1a1807 /isys/nfsmount.c
parentdda3384d6e3857992efba6df3690b6e63f0ae7e9 (diff)
downloadanaconda-abbc89ec6bf7f03c2d0e3dd4b1524226b8909675.tar.gz
anaconda-abbc89ec6bf7f03c2d0e3dd4b1524226b8909675.tar.xz
anaconda-abbc89ec6bf7f03c2d0e3dd4b1524226b8909675.zip
we really want perror here
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;