summaryrefslogtreecommitdiffstats
path: root/src/H5Plapl.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/H5Plapl.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/H5Plapl.c')
-rw-r--r--src/H5Plapl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Plapl.c b/src/H5Plapl.c
index 737b793..5467b3f 100644
--- a/src/H5Plapl.c
+++ b/src/H5Plapl.c
@@ -249,7 +249,7 @@ H5Pset_nlinks(hid_t plist_id, size_t nlinks)
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(H5Pset_nlinks, FAIL)
- H5TRACE2("e","iz",plist_id,nlinks);
+ H5TRACE2("e", "iz", plist_id, nlinks);
if(nlinks <= 0)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "number of links must be positive");
@@ -290,7 +290,7 @@ H5Pget_nlinks(hid_t plist_id, size_t *nlinks)
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(H5Pget_nlinks, FAIL)
- H5TRACE2("e","i*z",plist_id,nlinks);
+ H5TRACE2("e", "i*z", plist_id, nlinks);
if(!nlinks)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid pointer passed in");
@@ -330,7 +330,7 @@ H5Pset_elink_prefix(hid_t plist_id, const char *prefix)
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(H5Pset_elink_prefix, FAIL)
- H5TRACE2("e","is",plist_id,prefix);
+ H5TRACE2("e", "is", plist_id, prefix);
/* Get the plist structure */
if(NULL == (plist = H5P_object_verify(plist_id, H5P_LINK_ACCESS)))
@@ -381,7 +381,7 @@ H5Pget_elink_prefix(hid_t plist_id, char *prefix, size_t size)
ssize_t ret_value; /* Return value */
FUNC_ENTER_API(H5Pget_elink_prefix, FAIL)
- H5TRACE3("Zs","isz",plist_id,prefix,size);
+ H5TRACE3("Zs", "isz", plist_id, prefix, size);
/* Get the plist structure */
if(NULL == (plist = H5P_object_verify(plist_id, H5P_LINK_ACCESS)))