aboutsummaryrefslogtreecommitdiff
path: root/include/fuse_kernel.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_kernel.h
parentaaa5c0931e79453091587e7e625ea92af061c249 (diff)
downloadlibfuse-38c9cb43787bf83ca4e9c9af707e82165de99008.tar.gz
Remove trailing comma in enums (#494)
They are illegal in C89/90.
Diffstat (limited to 'include/fuse_kernel.h')
-rw-r--r--include/fuse_kernel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse_kernel.h b/include/fuse_kernel.h
index 2971d29..018a00a 100644
--- a/include/fuse_kernel.h
+++ b/include/fuse_kernel.h
@@ -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 */