summaryrefslogtreecommitdiffstats
path: root/src/H5PB.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-12-19 17:03:22 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-12-19 17:03:22 (GMT)
commit9a66eb1377ee1d32ffbc879a76ec6c5c112e9612 (patch)
tree002eeeb3c18dd14befed1a7823ff16ec9ec249b7 /src/H5PB.c
parent10353ef87dfaa863c32a45b5b1bca827004efbe4 (diff)
downloadhdf5-9a66eb1377ee1d32ffbc879a76ec6c5c112e9612.zip
hdf5-9a66eb1377ee1d32ffbc879a76ec6c5c112e9612.tar.gz
hdf5-9a66eb1377ee1d32ffbc879a76ec6c5c112e9612.tar.bz2
Make the first parameter of H5PB_remove_entry() non-const to support some
changes I will commit shortly.
Diffstat (limited to 'src/H5PB.c')
-rw-r--r--src/H5PB.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PB.c b/src/H5PB.c
index bd21ab9..b59497e 100644
--- a/src/H5PB.c
+++ b/src/H5PB.c
@@ -1177,7 +1177,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PB_remove_entry(const H5F_shared_t *shared, haddr_t addr)
+H5PB_remove_entry(H5F_shared_t *shared, haddr_t addr)
{
uint64_t page;
H5PB_t *pb_ptr = NULL;