summaryrefslogtreecommitdiffstats
path: root/src/H5Cdbg.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-09-03 21:44:31 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-09-03 21:44:31 (GMT)
commitf796cd3c7834aa1cbd20289510ffb01ed92b00a7 (patch)
treeef1b58fb0b5ed8511e3c13022be839fe7b3ac034 /src/H5Cdbg.c
parentd85cd245d29d72990ded9fdf60a2b849a85b1912 (diff)
downloadhdf5-f796cd3c7834aa1cbd20289510ffb01ed92b00a7.zip
hdf5-f796cd3c7834aa1cbd20289510ffb01ed92b00a7.tar.gz
hdf5-f796cd3c7834aa1cbd20289510ffb01ed92b00a7.tar.bz2
Cast a non-void pointer to void pointer for "%p".
Diffstat (limited to 'src/H5Cdbg.c')
-rw-r--r--src/H5Cdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Cdbg.c b/src/H5Cdbg.c
index aeee59c..dae735d 100644
--- a/src/H5Cdbg.c
+++ b/src/H5Cdbg.c
@@ -334,7 +334,7 @@ H5C_dump_cache_skip_list(H5C_t * cache_ptr, char * calling_fcn)
entry_ptr->type->name);
HDfprintf(stdout, " node_ptr = %p, item = %p\n",
- node_ptr, H5SL_item(node_ptr));
+ (void *)node_ptr, H5SL_item(node_ptr));
/* increment node_ptr before we delete its target */