Skip to content

Commit

Permalink
Fixes clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
bmribler committed Sep 20, 2024
1 parent ffb4dff commit 1531824
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/H5Bcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ H5B__cache_deserialize(const void *_image, size_t len, void *_udata, bool H5_ATT
/* Check in case of level is corrupted, it is unreasonable for level to be
larger than the number of entries */
if (bt->level > bt->nchildren)
HGOTO_ERROR(H5E_BTREE, H5E_BADVALUE, NULL, "level cannot be greater than the number of children, possibly corrupted");
HGOTO_ERROR(H5E_BTREE, H5E_BADVALUE, NULL,
"level cannot be greater than the number of children, possibly corrupted");

/* Sibling pointers */
if (H5_IS_BUFFER_OVERFLOW(image, H5F_sizeof_addr(udata->f), p_end))
Expand Down

0 comments on commit 1531824

Please sign in to comment.