aboutsummaryrefslogtreecommitdiff
path: root/include/fuse_common.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_common.h
parentaaa5c0931e79453091587e7e625ea92af061c249 (diff)
downloadlibfuse-38c9cb43787bf83ca4e9c9af707e82165de99008.tar.gz
Remove trailing comma in enums (#494)
They are illegal in C89/90.
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r--include/fuse_common.h4
1 files changed, 2 insertions, 2 deletions
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)
};
/**