From: divinity76 Date: Mon, 31 Oct 2016 13:39:20 +0000 (+0100) Subject: silence bogus eclipse linter warning X-Git-Tag: fuse-3.0.0rc3~42^2 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=776ef9f83bdd8d5130622baf7024f4380f290dbd;p=qemu-gpiodev%2Flibfuse.git silence bogus eclipse linter warning "No break at the end of case cuse.c /example line 235 Code Analysis Problem" --- diff --git a/example/cuse.c b/example/cuse.c index e5514e9..15e2d37 100644 --- a/example/cuse.c +++ b/example/cuse.c @@ -233,6 +233,7 @@ static void cusexmp_ioctl(fuse_req_t req, int cmd, void *arg, case FIOC_READ: is_read = 1; + /* no break */ case FIOC_WRITE: fioc_do_rw(req, arg, in_buf, in_bufsz, out_bufsz, is_read); break;