diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2021-03-22 23:45:12 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2021-03-22 23:45:12 (GMT) |
commit | 1e71b31e8a3d264bd7cf4fec1292cf786d745689 (patch) | |
tree | f24f15b60527b5262def2a1a1e2a5923358380cc /test | |
parent | e736ca2b69b3bfa2050e90b45eaf4a3cfa00ecaa (diff) | |
download | hdf5-1e71b31e8a3d264bd7cf4fec1292cf786d745689.zip hdf5-1e71b31e8a3d264bd7cf4fec1292cf786d745689.tar.gz hdf5-1e71b31e8a3d264bd7cf4fec1292cf786d745689.tar.bz2 |
Fixes H5CX_pop badness
Diffstat (limited to 'test')
-rw-r--r-- | test/accum.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/accum.c b/test/accum.c index f3e19f0..8b0d026 100644 --- a/test/accum.c +++ b/test/accum.c @@ -139,7 +139,7 @@ main(void) nerrors += test_random_write(f); /* Pop API context */ - if (api_ctx_pushed && H5CX_pop(FALSE) < 0) + if (api_ctx_pushed && H5CX_pop() < 0) FAIL_STACK_ERROR api_ctx_pushed = FALSE; @@ -160,7 +160,7 @@ main(void) error: if (api_ctx_pushed) - H5CX_pop(FALSE); + H5CX_pop(); HDputs("*** TESTS FAILED ***"); return 1; @@ -2303,7 +2303,7 @@ test_swmr_write_big(hbool_t newest_format) FAIL_STACK_ERROR; /* Pop API context */ - if (api_ctx_pushed && H5CX_pop(FALSE) < 0) + if (api_ctx_pushed && H5CX_pop() < 0) FAIL_STACK_ERROR api_ctx_pushed = FALSE; @@ -2321,7 +2321,7 @@ error: H5Fclose(fid); if (api_ctx_pushed) - H5CX_pop(FALSE); + H5CX_pop(); H5Pclose(fapl); |