aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <mszeredi@suse.cz>2013-02-20 15:59:08 +0100
committerGravatar Miklos Szeredi <mszeredi@suse.cz>2013-02-20 15:59:08 +0100
commit29e1d592d014f7ccb001d62d1c818df54095c46f (patch)
tree5325f31ddd16a7977da0d84b667b17557ae64822 /include
parentc52c3256a5b0a586ab0c529ef76505143523780a (diff)
libfuse: 64bit fuse_ino_t
Change the type of fuse_ino_t from 'unsigned long' to 'uint64_t'. This only changes the size on 32bit architectures.
Diffstat (limited to 'include')
-rw-r--r--include/fuse_lowlevel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h
index d2caa78..0a1d5f5 100644
--- a/include/fuse_lowlevel.h
+++ b/include/fuse_lowlevel.h
@@ -44,7 +44,7 @@ extern "C" {
#define FUSE_ROOT_ID 1
/** Inode number type */
-typedef unsigned long fuse_ino_t;
+typedef uint64_t fuse_ino_t;
/** Request pointer type */
typedef struct fuse_req *fuse_req_t;
@@ -122,7 +122,7 @@ struct fuse_ctx {
};
struct fuse_forget_data {
- uint64_t ino;
+ fuse_ino_t ino;
uint64_t nlookup;
};