diff options
Diffstat (limited to 'src/H5Oshared.c')
-rw-r--r-- | src/H5Oshared.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/H5Oshared.c b/src/H5Oshared.c index 5c2b0e6..da526dc 100644 --- a/src/H5Oshared.c +++ b/src/H5Oshared.c @@ -149,7 +149,7 @@ H5O_shared_encode (H5F_t *f, uint8_t *buf/*out*/, const void *_mesg) *buf++ = 0; /*reserved 6*/ if (mesg->in_gh) { - H5F_addr_encode (f, &buf, &(mesg->u.gh.addr)); + H5F_addr_encode (f, &buf, mesg->u.gh.addr); INT32ENCODE (buf, mesg->u.gh.idx); } else { H5G_ent_encode (f, &buf, &(mesg->u.ent)); @@ -225,8 +225,8 @@ H5O_shared_debug (H5F_t UNUSED *f, const void *_mesg, "Sharing method", "Global heap"); HDfprintf (stream, "%*s%-*s %a\n", indent, "", fwidth, - "Collection address:", - &(mesg->u.gh.addr)); + "Collection address:", + mesg->u.gh.addr); HDfprintf (stream, "%*s%-*s %d\n", indent, "", fwidth, "Object ID within collection:", mesg->u.gh.idx); @@ -234,7 +234,8 @@ H5O_shared_debug (H5F_t UNUSED *f, const void *_mesg, HDfprintf (stream, "%*s%-*s %s\n", indent, "", fwidth, "Sharing method", "Obj Hdr"); - H5G_ent_debug (f, &(mesg->u.ent), stream, indent, fwidth, NULL); + H5G_ent_debug (f, &(mesg->u.ent), stream, indent, fwidth, + H5F_ADDR_UNDEF); } FUNC_LEAVE (SUCCEED); |