Skip to content

Commit

Permalink
Reduce warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kohler committed Oct 3, 2018
1 parent ce52b49 commit 2bd4d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elements/standard/script.cc
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ Script::step(int nsteps, int step_type, int njumps, ErrorHandler *errh)
String word = cp_shift_spacevec(_args3[ipos]);
String file = (_args3[ipos] ? _args3[ipos] : "-");
_args3[ipos] = (&">>"[insn == insn_save]) + file + " " + word;
/* FALLTHRU */
}
#endif
/* fallthru */
case INSN_PRINT:
case INSN_PRINTQ:
case INSN_PRINTN:
Expand Down Expand Up @@ -552,8 +552,8 @@ Script::step(int nsteps, int step_type, int njumps, ErrorHandler *errh)
msg = cp_unquote(msg);
if (msg)
errh->error("%.*s", msg.length(), msg.data());
/* fallthru */
}
/* fallthru */
case insn_end:
case insn_exit:
insn_finish:
Expand Down

0 comments on commit 2bd4d4b

Please sign in to comment.