summaryrefslogtreecommitdiff
path: root/tools/tiffmedian.c
diff options
context:
space:
mode:
authorRoger Leigh <rleigh@codelibre.net>2021-02-04 22:17:47 +0000
committerRoger Leigh <rleigh@codelibre.net>2021-02-06 13:40:32 +0000
commit145eb81dc87441e400f2bdaf7b873c429ce8c768 (patch)
tree56d9d72853d988146dcebb3ee7760328977550f4 /tools/tiffmedian.c
parent913d8f4cadd07da2abd48926749c0b95c38fd1ca (diff)
downloadlibtiff-git-145eb81dc87441e400f2bdaf7b873c429ce8c768.tar.gz
Suppress warnings or avoid case statement fallthrough
Diffstat (limited to 'tools/tiffmedian.c')
-rw-r--r--tools/tiffmedian.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/tiffmedian.c b/tools/tiffmedian.c
index d3726bc3..b27695b2 100644
--- a/tools/tiffmedian.c
+++ b/tools/tiffmedian.c
@@ -155,9 +155,11 @@ main(int argc, char* argv[])
case 'h':
usage(EXIT_SUCCESS);
/*NOTREACHED*/
+ break;
case '?':
usage(EXIT_FAILURE);
/*NOTREACHED*/
+ break;
}
if (argc - optind != 2)
usage(EXIT_FAILURE);