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_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/fuse_common.h') diff --git a/include/fuse_common.h b/include/fuse_common.h index 53d8b8a..39937d3 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -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) }; /** -- cgit v1.2.3