From 1e71b31e8a3d264bd7cf4fec1292cf786d745689 Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Mon, 22 Mar 2021 16:45:12 -0700 Subject: Fixes H5CX_pop badness --- test/accum.c | 8 ++++---- 1 file 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); -- cgit v0.12