should fix macos compilation error introduced by 8543db11b5

This commit is contained in:
Philippe Teuwen 2023-07-20 10:54:37 +02:00
parent 87d43b87d1
commit 89cbe3c7df

View file

@ -1399,7 +1399,7 @@ void annotateMfPlus(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize) {
} }
break; break;
default: default: {
// Messages for commands that do not need args are treated here // Messages for commands that do not need args are treated here
const char *annotation = mfpGetAnnotationForCode(cmd[pos]) ; const char *annotation = mfpGetAnnotationForCode(cmd[pos]) ;
if (annotation != NULL) { if (annotation != NULL) {
@ -1408,6 +1408,7 @@ void annotateMfPlus(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize) {
found_annotation = false; found_annotation = false;
} }
break; break;
}
} }
if (found_annotation) { if (found_annotation) {
break; break;