summaryrefslogtreecommitdiffstats
path: root/src/H5Pstrcpl.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/H5Pstrcpl.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/H5Pstrcpl.c')
-rw-r--r--src/H5Pstrcpl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Pstrcpl.c b/src/H5Pstrcpl.c
index f45c267..dfe8c5d 100644
--- a/src/H5Pstrcpl.c
+++ b/src/H5Pstrcpl.c
@@ -146,7 +146,7 @@ H5Pset_char_encoding(hid_t plist_id, H5T_cset_t encoding)
herr_t ret_value=SUCCEED; /* return value */
FUNC_ENTER_API(H5Pset_char_encoding, FAIL);
- H5TRACE2("e","iTc",plist_id,encoding);
+ H5TRACE2("e", "iTc", plist_id, encoding);
/* Check arguments */
if (encoding <= H5T_CSET_ERROR || encoding >= H5T_NCSET)
@@ -183,7 +183,7 @@ H5Pget_char_encoding(hid_t plist_id, H5T_cset_t *encoding /*out*/)
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER_API(H5Pget_char_encoding, FAIL);
- H5TRACE2("e","ix",plist_id,encoding);
+ H5TRACE2("e", "ix", plist_id, encoding);
/* Get the plist structure */
if(NULL == (plist = H5P_object_verify(plist_id, H5P_STRING_CREATE)))