diff options
Diffstat (limited to 'test/btree2.c')
-rw-r--r-- | test/btree2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/btree2.c b/test/btree2.c index 919a6ee..613d8d5 100644 --- a/test/btree2.c +++ b/test/btree2.c @@ -10016,7 +10016,7 @@ main(void) nerrors += (h5_verify_cached_stabs(FILENAME, fapl) < 0 ? 1 : 0); /* Pop API context */ - if (api_ctx_pushed && H5CX_pop() < 0) + if (api_ctx_pushed && H5CX_pop(FALSE) < 0) FAIL_STACK_ERROR api_ctx_pushed = FALSE; @@ -10036,7 +10036,7 @@ error: H5E_END_TRY; if (api_ctx_pushed) - H5CX_pop(); + H5CX_pop(FALSE); return 1; } /* end main() */ |