1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-07 00:37:10 +00:00

Resolve warning: unreachable-code-break (remove break following return)

This commit is contained in:
Nick Briggs
2022-12-24 22:20:39 -08:00
parent 7b67b3f79f
commit 38761fbd93
8 changed files with 9 additions and 36 deletions

View File

@@ -76,7 +76,6 @@ int OP_miscn(int misc_index, int arg_count) {
if (arg_count > 255) {
error("miscn: arg_count too big! continue punts");
goto do_ufn;
break;
}
result = values(arg_count, args);
break;
@@ -86,7 +85,6 @@ int OP_miscn(int misc_index, int arg_count) {
if (arg_count > 255) {
error("miscn: arg_count too big! continue punts");
goto do_ufn;
break;
}
result = values_list(arg_count, args);
break;
@@ -156,7 +154,7 @@ int OP_miscn(int misc_index, int arg_count) {
result = 0;
break;
default: goto do_ufn; break;
default: goto do_ufn;
} /* switch end */