add missing 'break' in case structure
This commit is contained in:
parent
6db620c4a6
commit
d31b5cdc8a
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue