diff options
author | David Young <dyoung@hdfgroup.org> | 2020-07-30 22:54:04 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-07-30 22:54:04 (GMT) |
commit | ea21b3f89fffc93a10cb96a5cf3c4a364e79724c (patch) | |
tree | 6e4527c8af9988dce0197a7bb9e2fbe76ac85c60 /src/H5I.c | |
parent | ddd5e4a6c329fbd6a791dde579020621d3e0e6c1 (diff) | |
download | hdf5-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |