esme.c: mark switch statement fall-thru for coverity

Change-Id: I2d8f16242b8ddca855fa387ad93f52adf8bcdeec
This commit is contained in:
Neels Hofmeyr 2018-10-29 18:32:49 +01:00
parent 16ea74c638
commit cf9e5f8c33
1 changed files with 1 additions and 0 deletions

View File

@ -56,6 +56,7 @@ int main( int argc, char **argv )
break;
default:
printf("Error: unrecognized option\n");
/* fall thru */
case 'h':
printf("usage: %s %s\n", argv[0], HELP_FORMAT);
return( -1 );