From 38c9cb43787bf83ca4e9c9af707e82165de99008 Mon Sep 17 00:00:00 2001 From: zsugabubus Date: Mon, 27 Jan 2020 16:13:11 +0000 Subject: Remove trailing comma in enums (#494) They are illegal in C89/90. --- include/fuse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/fuse.h') 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 -- cgit v1.2.3