summaryrefslogtreecommitdiffstats
path: root/fuse/include/fuse_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'fuse/include/fuse_common.h')
-rw-r--r--fuse/include/fuse_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fuse/include/fuse_common.h b/fuse/include/fuse_common.h
index dab3a569a..f08778bd1 100644
--- a/fuse/include/fuse_common.h
+++ b/fuse/include/fuse_common.h
@@ -28,7 +28,7 @@
#define FUSE_MAKE_VERSION(maj, min) ((maj) * 10 + (min))
#define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
-/* This interface uses 64 bit off64_t */
+/* This interface uses 64 bit off_t */
#if _FILE_OFFSET_BITS != 64
#error Please add -D_FILE_OFFSET_BITS=64 to your compile flags!
#endif
@@ -372,7 +372,7 @@ struct fuse_buf {
*
* Used if FUSE_BUF_FD_SEEK flag is set.
*/
- off64_t pos;
+ loff_t pos;
};
/**