summaryrefslogtreecommitdiffstats
path: root/src/H5R.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-10 15:47:47 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-10 15:47:47 (GMT)
commitdee5636a90a214926d4b9fb24e671921a3e3c4bc (patch)
tree4effad84050ec2463b2325a7902bcac45b53c44c /src/H5R.c
parent041e56526287225fe5675a5a2096692749cdf66d (diff)
downloadhdf5-dee5636a90a214926d4b9fb24e671921a3e3c4bc.zip
hdf5-dee5636a90a214926d4b9fb24e671921a3e3c4bc.tar.gz
hdf5-dee5636a90a214926d4b9fb24e671921a3e3c4bc.tar.bz2
[svn-r22542] update H5I_register_type usage to take a free_aux function callback
Diffstat (limited to 'src/H5R.c')
-rw-r--r--src/H5R.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5R.c b/src/H5R.c
index 4faf47b..dfb874e 100644
--- a/src/H5R.c
+++ b/src/H5R.c
@@ -83,7 +83,8 @@ H5R_init_interface(void)
FUNC_ENTER_NOAPI_NOINIT
/* Initialize the atom group for the file IDs */
- if(H5I_register_type(H5I_REFERENCE, (size_t)H5I_REFID_HASHSIZE, H5R_RESERVED_ATOMS, (H5I_free_t)NULL) < 0)
+ if(H5I_register_type(H5I_REFERENCE, (size_t)H5I_REFID_HASHSIZE, H5R_RESERVED_ATOMS,
+ (H5I_free_t)NULL, NULL) < 0)
HGOTO_ERROR(H5E_REFERENCE, H5E_CANTINIT, FAIL, "unable to initialize interface");
done: