aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2020-10-09 10:47:25 +0100
committerNikolaus Rath <Nikolaus@rath.org>2020-10-09 10:47:25 +0100
commit0105e061b97a97d9836128aea5bcdfc9593c9b82 (patch)
tree5b26ed5a34ba99e62a6332ee8021006e5a85b225 /include
parentf54eb86e9a0b596dfeceb18277efa8f840d85919 (diff)
downloadlibfuse-0105e061b97a97d9836128aea5bcdfc9593c9b82.tar.gz
Released 3.10.0
Diffstat (limited to 'include')
-rw-r--r--include/fuse_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index f5bfb6a..ea4bdb0 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -23,9 +23,9 @@
#define FUSE_MAJOR_VERSION 3
/** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 9
+#define FUSE_MINOR_VERSION 10
-#define FUSE_MAKE_VERSION(maj, min) ((maj) * 10 + (min))
+#define FUSE_MAKE_VERSION(maj, min) ((maj) * 100 + (min))
#define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
#ifdef __cplusplus