summaryrefslogtreecommitdiff
path: root/tools/tiffinfo.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/tiffinfo.c
parent913d8f4cadd07da2abd48926749c0b95c38fd1ca (diff)
downloadlibtiff-git-145eb81dc87441e400f2bdaf7b873c429ce8c768.tar.gz
Suppress warnings or avoid case statement fallthrough
Diffstat (limited to 'tools/tiffinfo.c')
-rw-r--r--tools/tiffinfo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/tiffinfo.c b/tools/tiffinfo.c
index 329c0d31..8303bbf8 100644
--- a/tools/tiffinfo.c
+++ b/tools/tiffinfo.c
@@ -128,10 +128,12 @@ main(int argc, char* argv[])
break;
case 'h':
usage(EXIT_SUCCESS);
- /*NOTREACHED*/
+ /*NOTREACHED*/
+ break;
case '?':
usage(EXIT_FAILURE);
/*NOTREACHED*/
+ break;
}
if (optind >= argc)
usage(EXIT_FAILURE);