Skip to content

Commit

Permalink
crtools: terminate the case for value 1071
Browse files Browse the repository at this point in the history
CID 157800 (#1 of 1): Missing break in switch (MISSING_BREAK)
unterminated_case: The case for value 1071 is not terminated by a 'break' statement.
  • Loading branch information
avagin committed Feb 5, 2016
1 parent b0b6192 commit c9c0506
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crtools.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@ int main(int argc, char *argv[], char *envp[])
case 1071:
if (parse_lsm_arg(optarg) < 0)
return -1;
break;
case 1072:
opts.timeout = atoi(optarg);
break;
Expand Down

0 comments on commit c9c0506

Please sign in to comment.