Commit ced5eeee authored by Andrew Vagin's avatar Andrew Vagin Committed by Pavel Emelyanov

crtools: terminate the case for value 1071

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.
Signed-off-by: 's avatarAndrew Vagin <avagin@virtuozzo.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent 672f97ad
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment