H5Tconv: fix H5T_CONV_INTERNAL_ checks (#1936)

Other locations check if it is defined and in cases where it is not
available, it is undefined, not 0.
This commit is contained in:
Dana Robinson 2022-07-27 09:47:06 -07:00 committed by GitHub
parent 21aca4f380
commit 05077d3784
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8361,7 +8361,7 @@ H5T__conv_ldouble_llong(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t n
*
*-------------------------------------------------------------------------
*/
#if H5T_CONV_INTERNAL_LDOUBLE_ULLONG
#ifdef H5T_CONV_INTERNAL_LDOUBLE_ULLONG
herr_t
H5T__conv_ldouble_ullong(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts, size_t buf_stride,
size_t H5_ATTR_UNUSED bkg_stride, void *buf, void H5_ATTR_UNUSED *bkg)