summaryrefslogtreecommitdiff
Diffstat
-rwxr-xr-xconfig.h2
-rwxr-xr-xinclude/fuse-lite/fuse.h6
-rwxr-xr-xinclude/fuse-lite/fuse_lowlevel.h4
-rwxr-xr-xlibfuse-lite/fuse.c6
-rwxr-xr-xlibfuse-lite/fuse_lowlevel.c10
-rwxr-xr-xsrc/lowntfs-3g.c2
-rwxr-xr-xsrc/ntfs-3g.c6
7 files changed, 18 insertions, 18 deletions
diff --git a/include/fuse-lite/fuse.h b/include/fuse-lite/fuse.h
index 1b3291a..6e7087e 100755
--- a/include/fuse-lite/fuse.h
+++ b/include/fuse-lite/fuse.h
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#if HAVE_SYS_STATVFS_H
-#include <sys/statvfs.h>
+#include <sys/statfs.h>
#endif
#ifdef __cplusplus
@@ -192,7 +192,7 @@ struct fuse_operations {
*/
#if HAVE_SYS_STATVFS_H
- int (*statfs) (const char *, struct statvfs *);
+ int (*statfs) (const char *, struct statfs *);
#endif
/** Possibly flush cached data
@@ -581,7 +581,7 @@ int fuse_fs_flush(struct fuse_fs *fs, const char *path,
struct fuse_file_info *fi);
#if HAVE_SYS_STATVFS_H
-int fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statvfs *buf);
+int fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statfs *buf);
#endif
int fuse_fs_opendir(struct fuse_fs *fs, const char *path,