diff options
author | Quincey Koziol <koziol@koziol.gov> | 2019-08-19 23:48:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@koziol.gov> | 2019-08-19 23:48:06 (GMT) |
commit | f285c76ef25366e889d25ac8c223c91c080cf3b7 (patch) | |
tree | 431a73a9a731cb31d2ba49d5fd741b4340d7a68d /testpar | |
parent | df36318b5f338d469db0086151d86601236e922a (diff) | |
download | hdf5-f285c76ef25366e889d25ac8c223c91c080cf3b7.zip hdf5-f285c76ef25366e889d25ac8c223c91c080cf3b7.tar.gz hdf5-f285c76ef25366e889d25ac8c223c91c080cf3b7.tar.bz2 |
First pass of converting H5PB_* routines to use shared file pointers.
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c index 4ecfc30..a3c007d 100644 --- a/testpar/t_file.c +++ b/testpar/t_file.c @@ -250,7 +250,7 @@ test_page_buffer_access(void) VRFY((ret == 0), ""); VRFY((H5SL_count(f->shared->page_buf->slist_ptr) == page_count), "Wrong number of pages in PB"); - ret = H5PB_flush(f); + ret = H5PB_flush(f->shared); VRFY((ret == 0), ""); /* read elements 0 - 200 */ |