summaryrefslogtreecommitdiffstats
path: root/src/H5B2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5B2.c')
-rw-r--r--src/H5B2.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5B2.c b/src/H5B2.c
index 1d18488..efc2ea6 100644
--- a/src/H5B2.c
+++ b/src/H5B2.c
@@ -368,11 +368,10 @@ H5B2_iterate(H5B2_t *bt2, hid_t dxpl_id, H5B2_operator_t op, void *op_data)
hdr = bt2->hdr;
/* Iterate through records */
- if (hdr->root.node_nrec > 0) {
+ if (hdr->root.node_nrec > 0)
/* Iterate through nodes */
if ((ret_value = H5B2_iterate_node(hdr, dxpl_id, hdr->depth, &hdr->root, op, op_data)) < 0)
HERROR(H5E_BTREE, H5E_CANTLIST, "node iteration failed");
- } /* end if */
FUNC_LEAVE_NOAPI(ret_value)
} /* H5B2_iterate() */