summaryrefslogtreecommitdiffstats
path: root/test/tvlstr.c
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2021-03-05 14:51:01 (GMT)
committerGitHub <noreply@github.com>2021-03-05 14:51:01 (GMT)
commit6794428d232236e1c4605e8ca0face915f01286b (patch)
tree0d5d5133bbb372ec53710649379e2de5c734d40f /test/tvlstr.c
parentf4e87791e1543d672dba07f7211cc01509b940b6 (diff)
downloadhdf5-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 'test/tvlstr.c')
-rw-r--r--test/tvlstr.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/tvlstr.c b/test/tvlstr.c
index 77b55a3..0503e62 100644
--- a/test/tvlstr.c
+++ b/test/tvlstr.c
@@ -659,8 +659,6 @@ test_write_vl_string_attribute(void)
ret = H5Fclose(file);
CHECK(ret, FAIL, "H5Fclose");
-
- return;
}
/****************************************************************
@@ -739,8 +737,6 @@ test_read_vl_string_attribute(void)
ret = H5Fclose(file);
CHECK(ret, FAIL, "H5Fclose");
-
- return;
}
/* Helper routine for test_vl_rewrite() */
@@ -864,8 +860,6 @@ test_vl_rewrite(void)
ret = H5Fclose(file2);
CHECK(ret, FAIL, "H5Fclose");
-
- return;
} /* end test_vl_rewrite() */
/****************************************************************