summaryrefslogtreecommitdiffstats
path: root/src/H5Olink.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-12-13 05:42:10 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-12-13 05:42:10 (GMT)
commite9a3da63a4a36c1c7431832cc50f71200b523864 (patch)
tree22228b9967f3e7ffd25544a297b5e957f0c45158 /src/H5Olink.c
parent4b36b8271b59f7f87294735812bfa80404c69f88 (diff)
downloadhdf5-e9a3da63a4a36c1c7431832cc50f71200b523864.zip
hdf5-e9a3da63a4a36c1c7431832cc50f71200b523864.tar.gz
hdf5-e9a3da63a4a36c1c7431832cc50f71200b523864.tar.bz2
[svn-r28605] Description:
Revisions to normalize revise chunks vs. trunk, plus push dataset metadata changes into the cache immediately (instead of holding them within the dataset data structures). Tested on: MacOSX/64 10.11.2 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'src/H5Olink.c')
-rw-r--r--src/H5Olink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Olink.c b/src/H5Olink.c
index d3c7f73..fd4ee88 100644
--- a/src/H5Olink.c
+++ b/src/H5Olink.c
@@ -835,7 +835,7 @@ H5O_link_debug(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, const void
HDfprintf(stream, "%*s%-*s %s\n", indent, "", fwidth,
"Link Name Character Set:", (lnk->cset == H5T_CSET_ASCII ?
"ASCII" : (lnk->cset == H5T_CSET_UTF8 ? "UTF-8" : "Unknown")));
- HDfprintf(stream, "%*s%-*s %s\n", indent, "", fwidth,
+ HDfprintf(stream, "%*s%-*s '%s'\n", indent, "", fwidth,
"Link Name:", lnk->name);
/* Display link-specific information */
@@ -846,7 +846,7 @@ H5O_link_debug(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, const void
break;
case H5L_TYPE_SOFT:
- HDfprintf(stream, "%*s%-*s %s\n", indent, "", fwidth,
+ HDfprintf(stream, "%*s%-*s '%s'\n", indent, "", fwidth,
"Link Value:", lnk->u.soft.name);
break;