summaryrefslogtreecommitdiffstats
path: root/src/H5R.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5R.c')
-rw-r--r--src/H5R.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5R.c b/src/H5R.c
index b9040dd..64fb18c 100644
--- a/src/H5R.c
+++ b/src/H5R.c
@@ -288,7 +288,7 @@ H5Rcreate(void *ref, hid_t loc_id, const char *name, H5R_type_t ref_type, hid_t
herr_t ret_value; /* Return value */
FUNC_ENTER_API(H5Rcreate, FAIL)
- H5TRACE5("e", "xisRti", ref, loc_id, name, ref_type, space_id);
+ H5TRACE5("e", "*xi*sRti", ref, loc_id, name, ref_type, space_id);
/* Check args */
if(ref == NULL)
@@ -494,7 +494,7 @@ H5Rdereference(hid_t id, H5R_type_t ref_type, const void *_ref)
hid_t ret_value;
FUNC_ENTER_API(H5Rdereference, FAIL)
- H5TRACE3("i", "iRtx", id, ref_type, _ref);
+ H5TRACE3("i", "iRt*x", id, ref_type, _ref);
/* Check args */
if(H5G_loc(id, &loc) < 0)
@@ -617,7 +617,7 @@ H5Rget_region(hid_t id, H5R_type_t ref_type, const void *ref)
hid_t ret_value;
FUNC_ENTER_API(H5Rget_region, FAIL)
- H5TRACE3("i", "iRtx", id, ref_type, ref);
+ H5TRACE3("i", "iRt*x", id, ref_type, ref);
/* Check args */
if(H5G_loc(id, &loc) < 0)
@@ -764,7 +764,7 @@ H5Rget_obj_type(hid_t id, H5R_type_t ref_type, const void *ref)
H5G_obj_t ret_value;
FUNC_ENTER_API(H5Rget_obj_type, H5G_UNKNOWN)
- H5TRACE3("Go", "iRtx", id, ref_type, ref);
+ H5TRACE3("Go", "iRt*x", id, ref_type, ref);
/* Check args */
if(H5G_loc(id, &loc) < 0)
@@ -922,7 +922,7 @@ H5Rget_name(hid_t id, H5R_type_t ref_type, const void *_ref, char *name,
ssize_t ret_value; /* Return value */
FUNC_ENTER_API(H5Rget_name, FAIL)
- H5TRACE5("Zs", "iRtxsz", id, ref_type, _ref, name, size);
+ H5TRACE5("Zs", "iRt*x*sz", id, ref_type, _ref, name, size);
/* Check args */
if(H5G_loc(id, &loc) < 0)