summaryrefslogtreecommitdiffstats
path: root/src/H5Pstrcpl.c
diff options
context:
space:
mode:
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)))