diff options
author | David Young <dyoung@hdfgroup.org> | 2020-07-09 18:57:53 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-07-09 18:57:53 (GMT) |
commit | 69d51065d2926f829e4a5f31191ddb2f3364b82d (patch) | |
tree | 52f204b2aecf93b3947c264138d1ac53b6a68528 /src/H5Gent.c | |
parent | 188c43b8ee78d830c22f30fb9adb802e46722fcd (diff) | |
parent | a8dc4bd93fad5ac70a1c99d291d3cc9738209639 (diff) | |
download | hdf5-69d51065d2926f829e4a5f31191ddb2f3364b82d.zip hdf5-69d51065d2926f829e4a5f31191ddb2f3364b82d.tar.gz hdf5-69d51065d2926f829e4a5f31191ddb2f3364b82d.tar.bz2 |
Merge branch 'rebased-fprintf-experiment' into fprintf-develop
Diffstat (limited to 'src/H5Gent.c')
-rw-r--r-- | src/H5Gent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Gent.c b/src/H5Gent.c index 19aef10..4852dde 100644 --- a/src/H5Gent.c +++ b/src/H5Gent.c @@ -552,7 +552,7 @@ H5G__ent_debug(const H5G_entry_t *ent, FILE *stream, int indent, int fwidth, "Name offset into private heap:", (unsigned long) (ent->name_off)); - HDfprintf(stream, "%*s%-*s %a\n", indent, "", fwidth, + HDfprintf(stream, "%*s%-*s %" PRIuHADDR "\n", indent, "", fwidth, "Object header address:", ent->header); HDfprintf(stream, "%*s%-*s ", indent, "", fwidth, @@ -567,10 +567,10 @@ H5G__ent_debug(const H5G_entry_t *ent, FILE *stream, int indent, int fwidth, HDfprintf(stream, "%*s%-*s\n", indent, "", fwidth, "Cached entry information:"); - HDfprintf(stream, "%*s%-*s %a\n", nested_indent, "", nested_fwidth, + HDfprintf(stream, "%*s%-*s %" PRIuHADDR "\n", nested_indent, "", nested_fwidth, "B-tree address:", ent->cache.stab.btree_addr); - HDfprintf(stream, "%*s%-*s %a\n", nested_indent, "", nested_fwidth, + HDfprintf(stream, "%*s%-*s %" PRIuHADDR "\n", nested_indent, "", nested_fwidth, "Heap address:", ent->cache.stab.heap_addr); break; |