summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/statvfs.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/statvfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/statvfs.c b/cpukit/libcsupport/src/statvfs.c
index bd6827fe76..7815118d6f 100644
--- a/cpukit/libcsupport/src/statvfs.c
+++ b/cpukit/libcsupport/src/statvfs.c
@@ -51,9 +51,9 @@ statvfs (const char *path, struct statvfs *sb)
rtems_set_errno_and_return_minus_one( ENOTSUP );
memset (sb, 0, sizeof (struct statvfs));
-
+
result = ( fs_mount_root->ops->statvfs_h )( fs_mount_root, sb );
-
+
rtems_filesystem_freenode( &loc );
return result;