summaryrefslogtreecommitdiffstats
path: root/src/H5Tcompound.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/H5Tcompound.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/H5Tcompound.c')
-rw-r--r--src/H5Tcompound.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Tcompound.c b/src/H5Tcompound.c
index 62681ce..f69fc3f 100644
--- a/src/H5Tcompound.c
+++ b/src/H5Tcompound.c
@@ -85,7 +85,7 @@ H5Tget_member_offset(hid_t type_id, unsigned membno)
size_t ret_value;
FUNC_ENTER_API(H5Tget_member_offset, 0)
- H5TRACE2("z","iIu",type_id,membno);
+ H5TRACE2("z", "iIu", type_id, membno);
/* Check args */
if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_COMPOUND != dt->shared->type)
@@ -162,7 +162,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","iIu",type_id,membno);
+ H5TRACE2("Tt", "iIu", type_id, membno);
/* Check args */
if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_COMPOUND != dt->shared->type)
@@ -210,7 +210,7 @@ H5Tget_member_type(hid_t type_id, unsigned membno)
hid_t ret_value;
FUNC_ENTER_API(H5Tget_member_type, FAIL)
- H5TRACE2("i","iIu",type_id,membno);
+ H5TRACE2("i", "iIu", type_id, membno);
/* Check args */
if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_COMPOUND != dt->shared->type)
@@ -336,7 +336,7 @@ H5Tinsert(hid_t parent_id, const char *name, size_t offset, hid_t member_id)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tinsert, FAIL)
- H5TRACE4("e","iszi",parent_id,name,offset,member_id);
+ H5TRACE4("e", "iszi", parent_id, name, offset, member_id);
/* Check args */
if (parent_id==member_id)
@@ -381,7 +381,7 @@ H5Tpack(hid_t type_id)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tpack, FAIL)
- H5TRACE1("e","i",type_id);
+ H5TRACE1("e", "i", type_id);
/* Check args */
if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE)) || H5T_detect_class(dt,H5T_COMPOUND)<=0)