summaryrefslogtreecommitdiffstats
path: root/src/H5MF.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5MF.c')
-rw-r--r--src/H5MF.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5MF.c b/src/H5MF.c
index 6e0c257..8985490 100644
--- a/src/H5MF.c
+++ b/src/H5MF.c
@@ -68,7 +68,8 @@ H5MF_alloc(H5F_t *f, intn op, size_t size, haddr_t *addr /*out */ )
* from there. But for now we just allocate more memory from the end of
* the file.
*/
- if (H5F_low_extend(f->shared->lf, op, size, addr /*out */ ) < 0) {
+ if (H5F_low_extend(f->shared->lf, &(f->shared->access_parms), op,
+ size, addr/*out*/) < 0) {
HRETURN_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL,
"low level mem management failed");
}