From 05077d378464ab8aa424b2f91b2b422353d644d3 Mon Sep 17 00:00:00 2001 From: Dana Robinson <43805+derobins@users.noreply.github.com> Date: Wed, 27 Jul 2022 09:47:06 -0700 Subject: 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. --- src/H5Tconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Tconv.c b/src/H5Tconv.c index 895b03d..a713416 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -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) -- cgit v0.12