add missing 'break' in case structure

This commit is contained in:
Holger Vogt 2018-07-11 18:57:06 +02:00
parent 6db620c4a6
commit d31b5cdc8a
1 changed files with 3 additions and 1 deletions

View File

@ -137,8 +137,10 @@ Poly_t interpretpoly(struct card *input, char controlType, char sourceType)
switch(controlType) {
case 'i':
formatselected = formatCC;
break;
case 'v':
formatselected = formatVC;
break;
default:
break; //TODO: decide what to do on other characters?
}
@ -363,4 +365,4 @@ struct card * translatepoly(struct card * input_line) {
}
strcat(output_line->line, expressionRHS);
return output_line;
}
}