summaryrefslogtreecommitdiffstats
path: root/src/H5I.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-07-30 22:54:04 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-07-30 22:54:04 (GMT)
commitea21b3f89fffc93a10cb96a5cf3c4a364e79724c (patch)
tree6e4527c8af9988dce0197a7bb9e2fbe76ac85c60 /src/H5I.c
parentddd5e4a6c329fbd6a791dde579020621d3e0e6c1 (diff)
downloadhdf5-ea21b3f89fffc93a10cb96a5cf3c4a364e79724c.zip
hdf5-ea21b3f89fffc93a10cb96a5cf3c4a364e79724c.tar.gz
hdf5-ea21b3f89fffc93a10cb96a5cf3c4a364e79724c.tar.bz2
%08p is not portable, it's a GNU-ism. Use %8p, instead. Squashes a GCC error.
Diffstat (limited to 'src/H5I.c')
-rw-r--r--src/H5I.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5I.c b/src/H5I.c
index 4215295..4e19aea 100644
--- a/src/H5I.c
+++ b/src/H5I.c
@@ -2416,7 +2416,7 @@ H5I__id_dump_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
HDfprintf(stderr, " id = %" PRIdHID "\n", item->id);
HDfprintf(stderr, " count = %u\n", item->count);
- HDfprintf(stderr, " obj = 0x%08p\n", item->obj_ptr);
+ HDfprintf(stderr, " obj = 0x%8p\n", item->obj_ptr);
/* Get the group location, so we get get the name */
switch (type) {