summaryrefslogtreecommitdiffstats
path: root/src/H5Tenum.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/H5Tenum.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/H5Tenum.c')
-rw-r--r--src/H5Tenum.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Tenum.c b/src/H5Tenum.c
index 6d45e57..94dc82f 100644
--- a/src/H5Tenum.c
+++ b/src/H5Tenum.c
@@ -83,7 +83,7 @@ H5Tenum_create(hid_t parent_id)
hid_t ret_value; /*return value */
FUNC_ENTER_API(H5Tenum_create, FAIL)
- H5TRACE1("i","i",parent_id);
+ H5TRACE1("i", "i", parent_id);
/* Check args */
if (NULL==(parent=H5I_object_verify(parent_id,H5I_DATATYPE)) || H5T_INTEGER!=parent->shared->type)
@@ -169,7 +169,7 @@ H5Tenum_insert(hid_t type, const char *name, const void *value)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tenum_insert, FAIL)
- H5TRACE3("e","isx",type,name,value);
+ H5TRACE3("e", "isx", type, name, value);
/* Check args */
if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE)))
@@ -279,7 +279,7 @@ H5Tget_member_value(hid_t type, unsigned membno, void *value/*out*/)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tget_member_value, FAIL)
- H5TRACE3("e","iIux",type,membno,value);
+ H5TRACE3("e", "iIux", type, membno, value);
if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a data type")
@@ -362,7 +362,7 @@ H5Tenum_nameof(hid_t type, const void *value, char *name/*out*/, size_t size)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tenum_nameof, FAIL)
- H5TRACE4("e","ixxz",type,value,name,size);
+ H5TRACE4("e", "ixxz", type, value, name, size);
/* Check args */
if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE)))
@@ -502,7 +502,7 @@ H5Tenum_valueof(hid_t type, const char *name, void *value/*out*/)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tenum_valueof, FAIL)
- H5TRACE3("e","isx",type,name,value);
+ H5TRACE3("e", "isx", type, name, value);
/* Check args */
if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE)))