diff options
author | Sean McBride <sean@rogue-research.com> | 2021-03-05 14:51:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 14:51:01 (GMT) |
commit | 6794428d232236e1c4605e8ca0face915f01286b (patch) | |
tree | 0d5d5133bbb372ec53710649379e2de5c734d40f /tools/src/h5import | |
parent | f4e87791e1543d672dba07f7211cc01509b940b6 (diff) | |
download | hdf5-6794428d232236e1c4605e8ca0face915f01286b.zip hdf5-6794428d232236e1c4605e8ca0face915f01286b.tar.gz hdf5-6794428d232236e1c4605e8ca0face915f01286b.tar.bz2 |
Fixed clang-tidy readability-redundant-control-flow warnings (#428)
* Fixed clang-tidy readability-redundant-control-flow warnings
Just removed useless trailing return statements.
* Removed blank lines from h5diffgentest.c with clang-format v10.0.1.
Co-authored-by: Larry Knox <lrknox@hdfgroup.org>
Diffstat (limited to 'tools/src/h5import')
-rw-r--r-- | tools/src/h5import/h5import.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/src/h5import/h5import.c b/tools/src/h5import/h5import.c index 471af51..2dc02bc 100644 --- a/tools/src/h5import/h5import.c +++ b/tools/src/h5import/h5import.c @@ -5097,7 +5097,6 @@ help(char *name) (void)HDfprintf(stdout, "\t data-set will be compressed using GZIP and a compression level \n"); (void)HDfprintf(stdout, "\t of 7.\n"); (void)HDfprintf(stdout, "\t The dataset will be stored at \"/Second-set\"\n\n"); - return; } void @@ -5107,5 +5106,4 @@ usage(char *name) (void)HDfprintf(stdout, "\t%s <infile> -c[onfig] <configfile> \ [<infile> -c[config] <configfile>...] -o[utfile] <outfile> \n\n", name); - return; } |