summaryrefslogtreecommitdiffstats
path: root/src/H5Fio.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-19 23:48:06 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-08-19 23:48:06 (GMT)
commitf285c76ef25366e889d25ac8c223c91c080cf3b7 (patch)
tree431a73a9a731cb31d2ba49d5fd741b4340d7a68d /src/H5Fio.c
parentdf36318b5f338d469db0086151d86601236e922a (diff)
downloadhdf5-f285c76ef25366e889d25ac8c223c91c080cf3b7.zip
hdf5-f285c76ef25366e889d25ac8c223c91c080cf3b7.tar.gz
hdf5-f285c76ef25366e889d25ac8c223c91c080cf3b7.tar.bz2
First pass of converting H5PB_* routines to use shared file pointers.
Diffstat (limited to 'src/H5Fio.c')
-rw-r--r--src/H5Fio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fio.c b/src/H5Fio.c
index 402db36..63b033f 100644
--- a/src/H5Fio.c
+++ b/src/H5Fio.c
@@ -159,7 +159,7 @@ H5F_block_write(H5F_t *f, H5FD_mem_t type, haddr_t addr, size_t size, const void
map_type = (type == H5FD_MEM_GHEAP) ? H5FD_MEM_DRAW : type;
/* Pass through page buffer layer */
- if(H5PB_write(f, map_type, addr, size, buf) < 0)
+ if(H5PB_write(f->shared, map_type, addr, size, buf) < 0)
HGOTO_ERROR(H5E_IO, H5E_WRITEERROR, FAIL, "write through page buffer failed")
done: