From: Urban Wallasch Date: Thu, 23 Apr 2020 08:44:25 +0000 (+0200) Subject: * Silenced fall-through compiler warning. X-Git-Tag: v0.1.0 X-Git-Url: https://git.packet-gain.de/?a=commitdiff_plain;h=7884d8359f4b0b2626cb0aa74c3201cdb152902f;p=ets2_tele.git * Silenced fall-through compiler warning. --- diff --git a/telelogger.c b/telelogger.c index 4b65077..1c216b4 100644 --- a/telelogger.c +++ b/telelogger.c @@ -156,6 +156,7 @@ static int config( int argc, char *argv[] ) { case '?': default: EPRINT( "Unrecognized option '%c'\n", optopt ); + /* fall through */ case 'h': usage( argv[0] ); return -1;