mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
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:
parent
8ba28e13ea
commit
8a7c6009fb
@ -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])
|
||||
|
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user