aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
authorzsugabubus <zsugabubus@users.noreply.github.com>2020-01-27 16:13:11 +0000
committerNikolaus Rath <Nikolaus@rath.org>2020-01-27 16:13:11 +0000
commit38c9cb43787bf83ca4e9c9af707e82165de99008 (patch)
tree306939d3c0ba42bd69226aec54e8ec608f79d825 /include/fuse.h
parentaaa5c0931e79453091587e7e625ea92af061c249 (diff)
downloadlibfuse-38c9cb43787bf83ca4e9c9af707e82165de99008.tar.gz
Remove trailing comma in enums (#494)
They are illegal in C89/90.
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h4
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