silence bogus eclipse linter warning
authordivinity76 <divinity76@gmail.com>
Mon, 31 Oct 2016 13:39:20 +0000 (14:39 +0100)
committerGitHub <noreply@github.com>
Mon, 31 Oct 2016 13:39:20 +0000 (14:39 +0100)
"No break at the end of case cuse.c     /example     line 235  Code Analysis Problem"

example/cuse.c

index e5514e9b4cf4faa551629c933ecbffdb7197a471..15e2d37312fa1eb31144a2e32470c7a537f78fb8 100644 (file)
@@ -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;