diff options
author | Sean McBride <sean@rogue-research.com> | 2021-03-05 14:50:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 14:50:42 (GMT) |
commit | f4e87791e1543d672dba07f7211cc01509b940b6 (patch) | |
tree | 73994524e8e671251b3f3137c274b7f72be27329 /tools | |
parent | e84e5ee4672e22753a4d3d600dca2d5291953d78 (diff) | |
download | hdf5-f4e87791e1543d672dba07f7211cc01509b940b6.zip hdf5-f4e87791e1543d672dba07f7211cc01509b940b6.tar.gz hdf5-f4e87791e1543d672dba07f7211cc01509b940b6.tar.bz2 |
Fixed clang-tidy readability-misleading-indentation warnings (#427)
* Fixed clang-tidy readability-misleading-indentation warnings
* Reformatted src/H5Zscaleoffset.c with clang v10.0.1.
Co-authored-by: Larry Knox <lrknox@hdfgroup.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/test/perform/perf_meta.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/test/perform/perf_meta.c b/tools/test/perform/perf_meta.c index a93d673..d8ed9ec 100644 --- a/tools/test/perform/perf_meta.c +++ b/tools/test/perform/perf_meta.c @@ -818,8 +818,10 @@ main(int argc, char **argv) goto error; #ifdef H5_HAVE_PARALLEL if (facc_type != FACC_DEFAULT && MAINPROCESS) -#endif /*H5_HAVE_PARALLEL*/ printf("All metadata performance tests passed.\n"); +#else + printf("All metadata performance tests passed.\n"); +#endif /*H5_HAVE_PARALLEL*/ return 0; |