summaryrefslogtreecommitdiffstats
path: root/src/H5Shyper.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-11-20 21:08:58 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-11-20 21:08:58 (GMT)
commit6248a5804664a1ae1bc6f77cdafd116720050bbe (patch)
tree5b664c9e8d62f8ef47f09bfc84b3d5d98405567e /src/H5Shyper.c
parentcfcfc906b626ebc0bcda91bae018e821759227c8 (diff)
downloadhdf5-6248a5804664a1ae1bc6f77cdafd116720050bbe.zip
hdf5-6248a5804664a1ae1bc6f77cdafd116720050bbe.tar.gz
hdf5-6248a5804664a1ae1bc6f77cdafd116720050bbe.tar.bz2
[svn-r4628] Purpose:
Fix typo... Description: Copy & paste error... :-) Platforms tested: FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'src/H5Shyper.c')
-rw-r--r--src/H5Shyper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c
index 83121ae..b72020e 100644
--- a/src/H5Shyper.c
+++ b/src/H5Shyper.c
@@ -6292,7 +6292,7 @@ H5S_hyper_select_iterate(void *buf, hid_t type_id, H5S_t *space, H5D_operator_t
/* Get the datatype size */
if (NULL==(dt=H5I_object(type_id)))
HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not an valid base datatype");
- elem_size=H5T_get_size(dt);
+ elmt_size=H5T_get_size(dt);
/* Construct iterator for hyperslab selection */
if (H5S_hyper_init(space, elmt_size, &iter)<0)