diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-03-24 16:25:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 16:25:50 (GMT) |
commit | df9abfe3f0695df3cc39103e3e7d6e9e8b0f56dd (patch) | |
tree | 24a9e510d661a6179d1a62083738d55dac97fcd6 /test/tmisc.c | |
parent | 695a4e4f656c91e380eb34aaf8daabc897267a65 (diff) | |
download | hdf5-df9abfe3f0695df3cc39103e3e7d6e9e8b0f56dd.zip hdf5-df9abfe3f0695df3cc39103e3e7d6e9e8b0f56dd.tar.gz hdf5-df9abfe3f0695df3cc39103e3e7d6e9e8b0f56dd.tar.bz2 |
Misc warning fixes (#495)
* Committing clang-format changes
* Misc warning fixes from Visual Studio
* Committing clang-format changes
* Fixes warnings in swmr.c test
* Committing clang-format changes
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'test/tmisc.c')
-rw-r--r-- | test/tmisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tmisc.c b/test/tmisc.c index 8c7e53d..03f9952 100644 --- a/test/tmisc.c +++ b/test/tmisc.c @@ -3613,7 +3613,7 @@ test_misc19(void) /* Get a VOL class to register */ vol_cls = h5_get_dummy_vol_class(); - CHECK(vol_cls, NULL, "h5_get_dummy_vol_class"); + CHECK_PTR(vol_cls, "h5_get_dummy_vol_class"); /* Register a VOL connector */ volid = H5VLregister_connector(vol_cls, H5P_DEFAULT); |