summaryrefslogtreecommitdiff
path: root/libdiskfs
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-06-05 18:31:57 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-06-05 18:34:02 +0200
commit921af9c9865a3f54c388b0836f20c9ae3b30b247 (patch)
tree7a5aadedf11fad20d480f1138bf0efd92eca6617 /libdiskfs
parentf397f7c9c2a864f6496732a1406ed1f546cf3ad6 (diff)
libdiskfs: do not print a message on ENOMEM
* libdiskfs/node-cache.c (diskfs_node_iterate): Do not print a message on ENOMEM.
Diffstat (limited to 'libdiskfs')
-rw-r--r--libdiskfs/node-cache.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libdiskfs/node-cache.c b/libdiskfs/node-cache.c
index 6b70da83..a76474af 100644
--- a/libdiskfs/node-cache.c
+++ b/libdiskfs/node-cache.c
@@ -199,7 +199,6 @@ diskfs_node_iterate (error_t (*fun)(struct node *))
if (node_list == NULL)
{
pthread_rwlock_unlock (&nodecache_lock);
- error (0, 0, "unable to allocate temporary node table");
return ENOMEM;
}