summaryrefslogtreecommitdiffstats
path: root/src/H5Tcommit.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/H5Tcommit.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/H5Tcommit.c')
-rw-r--r--src/H5Tcommit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c
index 58d274c..7415342 100644
--- a/src/H5Tcommit.c
+++ b/src/H5Tcommit.c
@@ -90,7 +90,7 @@ H5Tcommit(hid_t loc_id, const char *name, hid_t type_id)
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tcommit, FAIL)
- H5TRACE3("e","isi",loc_id,name,type_id);
+ H5TRACE3("e", "isi", loc_id, name, type_id);
/* Check arguments */
if(H5G_loc(loc_id, &loc) < 0)
@@ -183,7 +183,7 @@ H5Tcommit_expand(hid_t loc_id, hid_t type_id, hid_t tcpl_id, hid_t tapl_id)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tcommit_expand, FAIL)
- H5TRACE4("e","iiii",loc_id,type_id,tcpl_id,tapl_id);
+ H5TRACE4("e", "iiii", loc_id, type_id, tcpl_id, tapl_id);
/* Check arguments */
if(H5G_loc (loc_id, &loc) < 0)
@@ -348,7 +348,7 @@ H5Tcommitted(hid_t type_id)
htri_t ret_value; /* Return value */
FUNC_ENTER_API(H5Tcommitted, FAIL)
- H5TRACE1("t","i",type_id);
+ H5TRACE1("t", "i", type_id);
/* Check arguments */
if(NULL == (type = H5I_object_verify(type_id,H5I_DATATYPE)))
@@ -449,7 +449,7 @@ H5Topen(hid_t loc_id, const char *name)
hid_t ret_value = FAIL;
FUNC_ENTER_API(H5Topen, FAIL)
- H5TRACE2("i","is",loc_id,name);
+ H5TRACE2("i", "is", loc_id, name);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -526,7 +526,7 @@ H5Topen_expand(hid_t loc_id, const char *name, hid_t tapl_id)
hid_t ret_value = FAIL;
FUNC_ENTER_API(H5Topen_expand, FAIL)
- H5TRACE3("i","isi",loc_id,name,tapl_id);
+ H5TRACE3("i", "isi", loc_id, name, tapl_id);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
@@ -608,7 +608,7 @@ H5Tget_create_plist(hid_t dtype_id)
hid_t ret_value; /* Return value */
FUNC_ENTER_API(H5Tget_create_plist, FAIL)
- H5TRACE1("i","i",dtype_id);
+ H5TRACE1("i", "i", dtype_id);
/* Check arguments */
if(NULL == (type = H5I_object_verify(dtype_id, H5I_DATATYPE)))