diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-14 15:46:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-14 15:46:38 (GMT) |
commit | e2518919c959dbf1bdb0890151cae91293e0594d (patch) | |
tree | 8a436ae57a310fdce030f1d15ec6084724524785 /src/H5Tcompound.c | |
parent | a34ed1f634081df2e6b8e7295eac73d3e31e7346 (diff) | |
download | hdf5-e2518919c959dbf1bdb0890151cae91293e0594d.zip hdf5-e2518919c959dbf1bdb0890151cae91293e0594d.tar.gz hdf5-e2518919c959dbf1bdb0890151cae91293e0594d.tar.bz2 |
[svn-r7626] Purpose:
Update dependencies and tracing information
Platforms tested:
Linux 2.4 (verbena) w/FORTRAN
too minor for h5committest
Diffstat (limited to 'src/H5Tcompound.c')
-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 e919c02..88f1696 100644 --- a/src/H5Tcompound.c +++ b/src/H5Tcompound.c @@ -99,7 +99,7 @@ H5Tget_member_offset(hid_t type_id, unsigned membno) size_t ret_value; FUNC_ENTER_API(H5Tget_member_offset, 0); - H5TRACE2("z","iIs",type_id,membno); + H5TRACE2("z","iIu",type_id,membno); /* Check args */ if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_COMPOUND != dt->type) @@ -185,7 +185,7 @@ H5Tget_member_class(hid_t type_id, unsigned membno) H5T_class_t ret_value; FUNC_ENTER_API(H5Tget_member_class, H5T_NO_CLASS); - H5TRACE2("Tt","iIs",type_id,membno); + H5TRACE2("Tt","iIu",type_id,membno); /* Check args */ if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_COMPOUND != dt->type) |