diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-15 10:58:16 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-11-15 10:58:16 (GMT) |
commit | 5ce8dd5e946c85522edd76f3288e7052bde86b8a (patch) | |
tree | 6bc41196dc773246135a10dc721d4a705dae6981 /tools/src/h5jam | |
parent | 14beb8be8cfc741eb0d83a7be3c7ac90fa76e7a7 (diff) | |
download | hdf5-5ce8dd5e946c85522edd76f3288e7052bde86b8a.zip hdf5-5ce8dd5e946c85522edd76f3288e7052bde86b8a.tar.gz hdf5-5ce8dd5e946c85522edd76f3288e7052bde86b8a.tar.bz2 |
Minor warning fixes
Diffstat (limited to 'tools/src/h5jam')
-rw-r--r-- | tools/src/h5jam/h5jam.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/src/h5jam/h5jam.c b/tools/src/h5jam/h5jam.c index 8c15686..cc5fcdc 100644 --- a/tools/src/h5jam/h5jam.c +++ b/tools/src/h5jam/h5jam.c @@ -179,9 +179,11 @@ parse_command_line (int argc, const char *argv[]) case 'h': usage (h5tools_getprogname()); leave (EXIT_SUCCESS); + break; case 'V': print_version (h5tools_getprogname()); leave (EXIT_SUCCESS); + break; case '?': default: usage (h5tools_getprogname()); @@ -198,10 +200,6 @@ parse_command_line (int argc, const char *argv[]) * Return: Success: 0 * Failure: 1 * - * Programmer: - * - * Modifications: - * *------------------------------------------------------------------------- */ int |