summaryrefslogtreecommitdiff
path: root/netfs/fuse/fuseSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/fuse/fuseSystem.cpp')
-rw-r--r--netfs/fuse/fuseSystem.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/netfs/fuse/fuseSystem.cpp b/netfs/fuse/fuseSystem.cpp
index 2440fa8..85432e8 100644
--- a/netfs/fuse/fuseSystem.cpp
+++ b/netfs/fuse/fuseSystem.cpp
@@ -1,11 +1,10 @@
-#include <typeConvert.h>
#include "fuseApp.h"
int
NetFS::FuseApp::statfs(const char * p, struct statvfs * vfs)
{
try {
- *vfs << volume->statfs(reqEnv(), p);
+ *vfs = converter.convert(volume->statfs(reqEnv(), p));
return 0;
}
catch (NetFS::SystemError & e) {