diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-06 16:55:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-06 16:55:14 (GMT) |
commit | bb9f192ca8a62ee2f41ca297a97ddae3962a1ca6 (patch) | |
tree | fff0e1e15085c373992856f4cd0e73b4f0975058 | |
parent | 62cac67145a5391bf337768611ceec6249351823 (diff) | |
download | hdf5-bb9f192ca8a62ee2f41ca297a97ddae3962a1ca6.zip hdf5-bb9f192ca8a62ee2f41ca297a97ddae3962a1ca6.tar.gz hdf5-bb9f192ca8a62ee2f41ca297a97ddae3962a1ca6.tar.bz2 |
[svn-r9378] Purpose:
Typo fix
Description:
Fix another typo with mis-merged info.
Platforms tested:
Solaris 2.7 (arabica)
Too minor to require h5committest
-rw-r--r-- | src/H5Tcompound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tcompound.c b/src/H5Tcompound.c index dc7b53d..6b57b3e 100644 --- a/src/H5Tcompound.c +++ b/src/H5Tcompound.c @@ -90,7 +90,7 @@ H5Tget_member_offset(hid_t type_id, int membno) size_t ret_value; FUNC_ENTER_API(H5Tget_member_offset, 0) - H5TRACE2("z","iIs",type_id,membno) + H5TRACE2("z","iIs",type_id,membno); /* Check args */ if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_COMPOUND != dt->shared->type) @@ -168,7 +168,7 @@ H5Tget_member_class(hid_t type_id, int membno) H5T_class_t ret_value; FUNC_ENTER_API(H5Tget_member_class, H5T_NO_CLASS) - H5TRACE2("Tt","iIs",type_id,membno) + H5TRACE2("Tt","iIs",type_id,membno); /* Check args */ if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_COMPOUND != dt->shared->type) |