summaryrefslogtreecommitdiffstats
path: root/test/error_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/error_test.c')
-rw-r--r--test/error_test.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/error_test.c b/test/error_test.c
index 21898f1..c8205ff8 100644
--- a/test/error_test.c
+++ b/test/error_test.c
@@ -558,7 +558,10 @@ test_copy(void)
/* Try to close error stack copy. Should fail because
* the current H5Eset_current_stack closes the stack to be set.
*/
- H5E_BEGIN_TRY { ret = H5Eclose_stack(estack_id); }
+ H5E_BEGIN_TRY
+ {
+ ret = H5Eclose_stack(estack_id);
+ }
H5E_END_TRY
if (ret >= 0)
TEST_ERROR