diff options
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r-- | src/H5Tconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c index 5c91a68..12df642 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -4918,7 +4918,7 @@ H5T_conv_i32le_f64le (hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, * element of the buffer) then the source and destination areas * overlap so we need to use a temp buf for the destination. */ - if (s==buf) d = tmp; + if ((void*)s==buf) d = tmp; /* Convert the integer to a sign and magnitude */ switch (src->u.atomic.u.i.sign) { |