Use fallthrough() to placate compiler

https://bugzilla.nasm.us/show_bug.cgi?id=3392465

Reported-by: Ozkan Sezer <sezeroz@gmail.com>
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2018-02-25 17:21:54 +03:00
parent 8ba28e13ea
commit 8a7c6009fb
2 changed files with 3 additions and 1 deletions

View File

@ -215,8 +215,8 @@ static void list_output(const struct out_data *data)
list_out(offset, q);
} else {
p = zero_buffer;
/* fall through */
}
fallthrough();
case OUT_RAWDATA:
{
if (size == 0 && !listdata[0])

View File

@ -233,6 +233,7 @@ int main(int argc, char **argv)
fprintf(stderr, "rdflib: required parameter missing\n");
exit(1);
}
fallthrough();
case 't':
fp = fopen(argv[2], "rb");
if (!fp) {
@ -317,6 +318,7 @@ int main(int argc, char **argv)
case 'r': /* replace module */
argc--;
fallthrough();
case 'd': /* delete module */
if (argc < 4) {
fprintf(stderr, "rdflib: required parameter missing\n");