aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
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 233a0b4..569c826 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -312,7 +312,7 @@ enum fuse_buf_copy_flags {
* destination instead of copying. See documentation of
* SPLICE_F_MOVE in splice(2) man page.
*/
- FUSE_BUF_SPLICE_MOVE = (1 << 2),
+ FUSE_BUF_SPLICE_MOVE = (1 << 3),
/**
* Don't block on the pipe when copying data with splice
@@ -321,7 +321,7 @@ enum fuse_buf_copy_flags {
* is full or empty). See SPLICE_F_NONBLOCK in the splice(2)
* man page.
*/
- FUSE_BUF_SPLICE_NONBLOCK= (1 << 3),
+ FUSE_BUF_SPLICE_NONBLOCK= (1 << 4),
};
/**