diff options
Diffstat (limited to 'test/error_test.c')
-rw-r--r-- | test/error_test.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/error_test.c b/test/error_test.c index c9cd1d1..5e74474 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 |