summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2006-12-18 19:16:17 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2006-12-18 19:16:17 (GMT)
commite100695eb0c207e9087696ccd3ca923b2ff248e2 (patch)
tree3b0a7b88619faf50bce86d316c7384f7ad1218da /src/H5O.c
parentddbc06fce64bc49ff6b3e83da3ff74d08251fc2c (diff)
downloadhdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.zip
hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.tar.gz
hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.tar.bz2
[svn-r13068] Ran bin/reconfigure. Some of the scripts have been changed or haven't
been run in a while, so many of the source files were updated with tracing macros, etc. No code changes by me. Tested on kagiso and smirom.
Diffstat (limited to 'src/H5O.c')
-rw-r--r--src/H5O.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 8adbae2..e235405 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -174,7 +174,7 @@ H5Oopen(hid_t loc_id, const char *name, hid_t lapl_id)
hid_t ret_value = FAIL;
FUNC_ENTER_API(H5Oopen, FAIL)
- H5TRACE3("i","isi",loc_id,name,lapl_id);
+ H5TRACE3("i", "isi", loc_id, name, lapl_id);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -240,7 +240,7 @@ H5Oopen_by_idx(hid_t loc_id, const char *group_name, H5_index_t idx_type,
hid_t ret_value = FAIL;
FUNC_ENTER_API(H5Oopen_by_idx, FAIL)
- H5TRACE6("i","isLiIohi",loc_id,group_name,idx_type,order,n,lapl_id);
+ H5TRACE6("i", "isIiIohi", loc_id, group_name, idx_type, order, n, lapl_id);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -327,7 +327,7 @@ H5Oopen_by_addr(hid_t loc_id, haddr_t addr)
hid_t ret_value = FAIL;
FUNC_ENTER_API(H5Oopen_by_addr, FAIL)
- H5TRACE2("i","ia",loc_id,addr);
+ H5TRACE2("i", "ia", loc_id, addr);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -383,7 +383,7 @@ H5Oincr_refcount(hid_t object_id)
herr_t ret_value = SUCCEED;
FUNC_ENTER_API(H5Oincr_refcount, FAIL)
- H5TRACE1("e","i",object_id);
+ H5TRACE1("e", "i", object_id);
/* Get the object's oloc so we can adjust its link count */
if((oloc = H5O_get_loc(object_id)) == NULL)
@@ -424,7 +424,7 @@ H5Odecr_refcount(hid_t object_id)
herr_t ret_value = SUCCEED;
FUNC_ENTER_API(H5Odecr_refcount, FAIL)
- H5TRACE1("e","i",object_id);
+ H5TRACE1("e", "i", object_id);
/* Get the object's oloc so we can adjust its link count */
if((oloc = H5O_get_loc(object_id)) == NULL)
@@ -572,7 +572,7 @@ H5Oclose(hid_t object_id)
herr_t ret_value = SUCCEED;
FUNC_ENTER_API(H5Oclose, FAIL)
- H5TRACE1("e","i",object_id);
+ H5TRACE1("e", "i", object_id);
/* Get the type of the object and close it in the correct way */
switch(H5I_get_type(object_id))