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:
@@ -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 */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user