summaryrefslogtreecommitdiffstats
path: root/test/th5d.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1997-10-08 20:39:10 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1997-10-08 20:39:10 (GMT)
commit9eec50a465b79668c0515c4e890ce52f5787ef8d (patch)
treef504f487843043ce80cf6c3bea41d834800ca2a8 /test/th5d.c
parent8b66e90352aab1c3e7e2013a76c443be296367d8 (diff)
downloadhdf5-9eec50a465b79668c0515c4e890ce52f5787ef8d.zip
hdf5-9eec50a465b79668c0515c4e890ce52f5787ef8d.tar.gz
hdf5-9eec50a465b79668c0515c4e890ce52f5787ef8d.tar.bz2
[svn-r115] Corrected usage of H5Tsize function.
Diffstat (limited to 'test/th5d.c')
-rw-r--r--test/th5d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/th5d.c b/test/th5d.c
index 39e0f35..33d7b9e 100644
--- a/test/th5d.c
+++ b/test/th5d.c
@@ -224,7 +224,7 @@ static void test_h5d_basic_read(void)
CHECK(n,UFAIL,"H5Pnelem");
VERIFY(n,SPACE1_DIM1*SPACE1_DIM2*SPACE1_DIM3,"H5Pnelem");
- buf_size=H5Tsize(tid1,len,arch,BTRUE)*n;
+ buf_size=H5Tsize(tid1,BTRUE)*n;
buf=HDmalloc(buf_size);
ret=H5Dread(did1,H5P_SCALAR,buf);
CHECK(ret,FAIL,"H5Dread");