Remove trailing comma in enums (#494)
authorzsugabubus <zsugabubus@users.noreply.github.com>
Mon, 27 Jan 2020 16:13:11 +0000 (16:13 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 27 Jan 2020 16:13:11 +0000 (16:13 +0000)
They are illegal in C89/90.

include/fuse.h
include/fuse_common.h
include/fuse_kernel.h

index 4d5a175d70b481fe5afa50b799ae1a76eb433fac..3df61b1559a905e02360c74a3f40026f9f86789d 100644 (file)
@@ -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
index 53d8b8ad26a5e69bc1dc5ed3888e62461be9622c..39937d3506531c44d607d3f677a96ee501873c1c 100644 (file)
@@ -635,7 +635,7 @@ enum fuse_buf_flags {
         * until .size bytes have been copied or an error or EOF is
         * detected.
         */
-       FUSE_BUF_FD_RETRY       = (1 << 3),
+       FUSE_BUF_FD_RETRY       = (1 << 3)
 };
 
 /**
@@ -677,7 +677,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 << 4),
+       FUSE_BUF_SPLICE_NONBLOCK= (1 << 4)
 };
 
 /**
index 2971d29a42e4a46892ede858e3910ac2a4a45498..018a00a2da0ff502ab043bc2f62e1025915c4129 100644 (file)
@@ -424,7 +424,7 @@ enum fuse_opcode {
        FUSE_COPY_FILE_RANGE    = 47,
 
        /* CUSE specific operations */
-       CUSE_INIT               = 4096,
+       CUSE_INIT               = 4096
 };
 
 enum fuse_notify_code {
@@ -434,7 +434,7 @@ enum fuse_notify_code {
        FUSE_NOTIFY_STORE = 4,
        FUSE_NOTIFY_RETRIEVE = 5,
        FUSE_NOTIFY_DELETE = 6,
-       FUSE_NOTIFY_CODE_MAX,
+       FUSE_NOTIFY_CODE_MAX
 };
 
 /* The read buffer is required to be at least 8k, but may be much larger */