Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins committed Mar 9, 2024
1 parent 060cfc1 commit d35afe7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/H5B.c
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,8 @@ H5B__insert_helper(H5F_t *f, H5B_ins_ud_t *bt_ud, const H5B_class_t *type, uint8
}
else if (cmp) {
/* We couldn't figure out which branch to follow out of this node */
HGOTO_ERROR(H5E_BTREE, H5E_CANTINSERT, H5B_INS_ERROR, "internal error: likely corrupt key values");
HGOTO_ERROR(H5E_BTREE, H5E_CANTINSERT, H5B_INS_ERROR,
"internal error: could not determine which branch to follow out of this node");
}
else if (bt->level > 0) {
/*
Expand Down

0 comments on commit d35afe7

Please sign in to comment.