summaryrefslogtreecommitdiffstats
path: root/test/dtransform.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-05-05 20:25:26 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-05-05 20:25:26 (GMT)
commit49962582685cd642226f4af26c10487323f2490a (patch)
treea66a172042fbc945a4319fa67a1440d2fe6d9357 /test/dtransform.c
parent7f99a80b0abee64d09ada9be749196cf8185eaf2 (diff)
downloadhdf5-49962582685cd642226f4af26c10487323f2490a.zip
hdf5-49962582685cd642226f4af26c10487323f2490a.tar.gz
hdf5-49962582685cd642226f4af26c10487323f2490a.tar.bz2
[svn-r8483] Purpose:
Bug fix Description: Fix problems compiling with g++. Platforms tested: FreeBSD 4.9 (sleipnir) w/CC=g++
Diffstat (limited to 'test/dtransform.c')
-rw-r--r--test/dtransform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dtransform.c b/test/dtransform.c
index 0f2e4e8..b3a0943 100644
--- a/test/dtransform.c
+++ b/test/dtransform.c
@@ -60,7 +60,7 @@ int main()
windchillCcalc[row][col] = (5/9.0)*(windchillF[row][col] - 32);
}
- if( (compare(windchillCread, windchillCcalc)) == 0)
+ if( (compare((int*)windchillCread, (int*)windchillCcalc)) == 0)
{
fprintf(stderr, "ERROR: Conversion failed to match computed data\n");
TEST_ERROR;
@@ -68,7 +68,7 @@ int main()
else
{
err = H5Dread(dset_id, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl_id_c_to_f, windchillFread);
- if( (compare(windchillF, windchillFread)) == 0)
+ if( (compare((int *)windchillF, (int *)windchillFread)) == 0)
{
fprintf(stderr, "ERROR: Conversion failed to match computed data\n");
TEST_ERROR;