diff options
author | Robb Matzke <matzke@llnl.gov> | 2002-08-09 14:55:41 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 2002-08-09 14:55:41 (GMT) |
commit | 90db3412d4574977cc12656c5b84785c24004d57 (patch) | |
tree | 97f08469cfb97c86a1dc1ae04bf0b199e96522af | |
parent | 77bc29e89efde369e80171ef8e94d50497b03564 (diff) | |
download | hdf5-90db3412d4574977cc12656c5b84785c24004d57.zip hdf5-90db3412d4574977cc12656c5b84785c24004d57.tar.gz hdf5-90db3412d4574977cc12656c5b84785c24004d57.tar.bz2 |
[svn-r5863] ./hdf5-devel/src/H5T.c
Purpose:
Merged from 1.4 branch
Description:
API tracing improvements
Platforms tested:
Linux (--disable-hsizet didn't work before my changes and still doesn't
work, but --enable-hsizet is fine).
Note: This checkin includes temporary code in H5FDmpiposix.c to turn
off GPFS byte range token prefetches on ASCI/Blue. Once the HDF5 API
supports the necessary prerequisite functionality this temporary code
can be migraged up above HDF5.
-rw-r--r-- | src/H5T.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4318,7 +4318,7 @@ H5Tget_member_value(hid_t type, int membno, void *value/*out*/) herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(H5Tget_member_value, FAIL); - H5TRACE3("i","iIsx",type,membno,value); + H5TRACE3("e","iIsx",type,membno,value); if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a data type"); |