diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-10-26 14:49:52 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-10-26 14:49:52 (GMT) |
commit | db9525c2a3ee70379032bae71f26866451df7e58 (patch) | |
tree | 81d4f205bbe5c1b201d4be648d04d420dc297cf8 /src/H5R.c | |
parent | 7f020a4f3ce07a105881240d1cabd3a16bd518a0 (diff) | |
download | hdf5-db9525c2a3ee70379032bae71f26866451df7e58.zip hdf5-db9525c2a3ee70379032bae71f26866451df7e58.tar.gz hdf5-db9525c2a3ee70379032bae71f26866451df7e58.tar.bz2 |
[svn-r789] Changes since 19981023
----------------------
./MANIFEST
./test/Makefile.in
./test/flush1.c [NEW]
./test/flush2.c [NEW]
Test to see if calling H5Fflush() results in a consistent
file.
./src/H5.c
./src/H5A.c
./src/H5D.c
./src/H5Fistore.c
./src/H5I.c
./src/H5S.c
./src/H5Shyper.c
./src/H5Sselect.c
./src/H5TB.c
Changed comparisons against SUCCEED and FAIL to >=0 and <0 in
about 15 places.
./src/H5.c
./src/H5V.c
./src/H5detect.c
./src/H5private.h
./src/H5public.h
./test/big.c
./test/chunk.c
./test/cmpd_dset.c
./test/dsets.c
./test/dtypes.c
./test/external.c
./test/fillval.c
./test/iopipe.c
./test/links.c
./test/mount.c
./test/mtime.c
./test/ragged.c
./test/shtype.c
./test/unlink.c
Removed ^M from the end of lines inserted on broken OS's ;-)
./src/H5private.h
Changed c++ comments to c comments.
./src/H5R.c
Added tracing macros.
Diffstat (limited to 'src/H5R.c')
-rw-r--r-- | src/H5R.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -202,7 +202,7 @@ H5Rcreate(void *ref, hid_t loc_id, const char *name, H5R_type_t ref_type, hid_t herr_t ret_value = FAIL; FUNC_ENTER(H5Rcreate, FAIL); - H5TRACE5("e","*risRti",ref,loc_id,name,ref_type,space_id); + H5TRACE5("e","xisRti",ref,loc_id,name,ref_type,space_id); /* Check args */ if(ref==NULL) @@ -325,7 +325,7 @@ H5Rdereference(hid_t dataset, H5R_type_t ref_type, void *_ref) hid_t ret_value = FAIL; FUNC_ENTER(H5Rdereference, FAIL); - H5TRACE2("i","i*r",dataset,_ref); + H5TRACE3("i","iRtx",dataset,ref_type,_ref); /* Check args */ if (H5I_DATASET != H5I_get_type(dataset) || NULL == (dset = H5I_object(dataset))) @@ -407,7 +407,7 @@ H5Rget_space(void *ref) hid_t ret_value = FAIL; FUNC_ENTER(H5Rget_space, FAIL); - H5TRACE1("i","*r",ref); + H5TRACE1("i","x",ref); /* Check args */ if(ref==NULL) |