diff options
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse.h b/include/fuse.h index 4d5a175..3df61b1 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -48,7 +48,7 @@ enum fuse_readdir_flags { * FUSE_FILL_DIR_FLAGS for the filler function. The filesystem may also * just ignore this flag completely. */ - FUSE_READDIR_PLUS = (1 << 0), + FUSE_READDIR_PLUS = (1 << 0) }; enum fuse_fill_dir_flags { @@ -61,7 +61,7 @@ enum fuse_fill_dir_flags { * It is okay to set FUSE_FILL_DIR_PLUS if FUSE_READDIR_PLUS is not set * and vice versa. */ - FUSE_FILL_DIR_PLUS = (1 << 1), + FUSE_FILL_DIR_PLUS = (1 << 1) }; /** Function to add an entry in a readdir() operation |