From 378b5ad0f1bd0f15e6dd8f479c19f25502555184 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 25 Nov 2003 13:11:27 -0500 Subject: [svn-r7879] Purpose: Bug fix Description: C++ compiler was choking on passing a (hsize_t *) to a function which wants a (uint8_t *). Solution: Cast the (hsize_t *) to a (uint8_t *)... :-) Platforms tested: FreeBSD 4.9 (sleipnir) Configuration untested by h5committest --- test/dtypes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dtypes.c b/test/dtypes.c index 448115c..f054002 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -4777,7 +4777,7 @@ overflows(unsigned char *origin_bits, dtype_t src_dtype, size_t src_size_bytes, else sig >>= expt_digits - expt; - indx = H5T_bit_find(&sig, 0, 8*sizeof(hsize_t), H5T_BIT_MSB, 1); + indx = H5T_bit_find((uint8_t *)&sig, 0, 8*sizeof(hsize_t), H5T_BIT_MSB, 1); if(indx>=dst_num_bits) ret_value=TRUE; -- cgit v0.12