From 7811f7d428a6766eb8d812d072a106df1a83cf34 Mon Sep 17 00:00:00 2001 From: Mark Borgerding Date: Sat, 23 Jan 2021 11:52:53 -0500 Subject: [PATCH] fixed switch-case fall-thru --- tools/psdpng.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/psdpng.c b/tools/psdpng.c index 5170c8c..4692302 100644 --- a/tools/psdpng.c +++ b/tools/psdpng.c @@ -46,6 +46,7 @@ void config(int argc,char** argv) "\t-s : input is stereo, channels will be combined before fft\n" "16 bit machine format real input is assumed\n" ); + break; default: fprintf (stderr, "bad %c\n", c); exit (1);