From: Niels Möller Date: Tue, 16 Jan 2018 21:50:28 +0000 (+0100) Subject: Add "fall through" comment. X-Git-Tag: nettle_3.4.1rc1~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=173605f0de346a037b01edb6d1d6631086602778;p=thirdparty%2Fnettle.git Add "fall through" comment. (cherry picked from commit c4a814d77d475c474182e3e7051e4ac304e3c9e8) --- diff --git a/examples/nettle-benchmark.c b/examples/nettle-benchmark.c index 11f62709..18f91c1f 100644 --- a/examples/nettle-benchmark.c +++ b/examples/nettle-benchmark.c @@ -789,6 +789,7 @@ main(int argc, char **argv) frequency = atof(optarg); if (frequency > 0.0) break; + /* Fall through */ case OPT_HELP: printf("Usage: nettle-benchmark [-f clock frequency] [alg]\n");