Skip to content

Commit

Permalink
Fix typo in doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Jan 8, 2025
1 parent cc0bbc4 commit b6bf81a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5T.c
Original file line number Diff line number Diff line change
Expand Up @@ -3715,7 +3715,7 @@ H5Tdecode2(const void *buf, size_t buf_size)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, H5I_INVALID_HID, "empty buffer");

/* Create datatype by decoding buffer */
if (NULL == (dt = H5T_decode(buf_size, (const unsigned char *)buf)))
if (NULL == (dt = H5T_decode(buf_size, buf)))
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTDECODE, H5I_INVALID_HID, "can't decode object");

/* Register the type and return the ID */
Expand Down

0 comments on commit b6bf81a

Please sign in to comment.