diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-03 20:52:03 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-03 20:52:03 +0000 |
commit | abbc89ec6bf7f03c2d0e3dd4b1524226b8909675 (patch) | |
tree | 06f1e55104557984db1d724eebea770bce1a1807 /isys | |
parent | dda3384d6e3857992efba6df3690b6e63f0ae7e9 (diff) | |
download | anaconda-abbc89ec6bf7f03c2d0e3dd4b1524226b8909675.tar.gz anaconda-abbc89ec6bf7f03c2d0e3dd4b1524226b8909675.tar.xz anaconda-abbc89ec6bf7f03c2d0e3dd4b1524226b8909675.zip |
we really want perror here
Diffstat (limited to 'isys')
-rw-r--r-- | isys/nfsmount.c | 2 |
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; |