summaryrefslogtreecommitdiffstats
path: root/src/H5Gnode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Gnode.c')
-rw-r--r--src/H5Gnode.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Gnode.c b/src/H5Gnode.c
index 1a153d5..a1f7762 100644
--- a/src/H5Gnode.c
+++ b/src/H5Gnode.c
@@ -232,7 +232,10 @@ H5G_node_debug_key (FILE *stream, H5F_t *f, hid_t dxpl_id, int indent, int fwidt
FUNC_ENTER_NOAPI(H5G_node_debug_key, FAIL);
assert (key);
- HDfprintf(stream, "%*s%-*s ", indent, "", fwidth, "Name :");
+ HDfprintf(stream, "%*s%-*s %u\n", indent, "", fwidth, "Heap offset:",
+ (unsigned)key->offset);
+
+ HDfprintf(stream, "%*s%-*s ", indent, "", fwidth, "Name:");
if (NULL == (s = H5HL_peek(f, dxpl_id, udata->heap_addr, key->offset)))
HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "unable to read symbol name");
HDfprintf (stream, "%s\n", s);