Index: uspace/srv/fs/ext4fs/ext4fs_ops.c
===================================================================
--- uspace/srv/fs/ext4fs/ext4fs_ops.c	(revision 8ad547002151caebceb0d8867e9f2283f118e867)
+++ uspace/srv/fs/ext4fs/ext4fs_ops.c	(revision fb04cd903622a3c4f06209951d12543e563b5987)
@@ -936,5 +936,5 @@
 	rc = ext4_filesystem_check_sanity(fs);
 	if (rc != EOK) {
-		ext4_filesystem_fini(fs, false);
+		ext4_filesystem_fini(fs);
 		free(fs);
 		free(inst);
@@ -946,5 +946,5 @@
 	rc = ext4_filesystem_check_features(fs, &read_only);
 	if (rc != EOK) {
-		ext4_filesystem_fini(fs, false);
+		ext4_filesystem_fini(fs);
 		free(fs);
 		free(inst);
@@ -962,5 +962,5 @@
 	rc = ext4fs_node_get_core(&root_node, inst, EXT4_INODE_ROOT_INDEX);
 	if (rc != EOK) {
-		ext4_filesystem_fini(fs, false);
+		ext4_filesystem_fini(fs);
 		free(fs);
 		free(inst);
@@ -1015,5 +1015,5 @@
 	fibril_mutex_unlock(&open_nodes_lock);
 
-	return ext4_filesystem_fini(inst->filesystem, true);
+	return ext4_filesystem_fini(inst->filesystem);
 }
 
