diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-04-25 23:49:04 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-04-25 23:49:04 (GMT) |
commit | a8676d74d9fc50c0da4dcf4cf5646e4a8b2352ba (patch) | |
tree | e10dce719d3ddb94a1a89c9c498a2df23f2df2b2 /tools/src/h5jam | |
parent | e54f5a14d28cf9eb1226ce7feab2e2600d3984b4 (diff) | |
download | hdf5-a8676d74d9fc50c0da4dcf4cf5646e4a8b2352ba.zip hdf5-a8676d74d9fc50c0da4dcf4cf5646e4a8b2352ba.tar.gz hdf5-a8676d74d9fc50c0da4dcf4cf5646e4a8b2352ba.tar.bz2 |
Fixes for warnings in the tools code.
Diffstat (limited to 'tools/src/h5jam')
-rw-r--r-- | tools/src/h5jam/h5jam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/h5jam/h5jam.c b/tools/src/h5jam/h5jam.c index 07797c8..009e527 100644 --- a/tools/src/h5jam/h5jam.c +++ b/tools/src/h5jam/h5jam.c @@ -148,7 +148,7 @@ parse_command_line (int argc, const char *argv[]) int opt = FALSE; /* parse command line options */ - while ((opt = get_option (argc, argv, s_opts, l_opts)) != EOF) + while ((opt = get_option(argc, argv, s_opts, l_opts)) != EOF) { switch ((char) opt) { |