diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-09-19 18:16:07 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-09-19 18:16:07 (GMT) |
commit | 359d51effedde76636e0a65f0580b6bcfcb5753d (patch) | |
tree | 5c5381f522287f3b2e9a7f965fdad37a8260edb7 /examples | |
parent | 0b2feea6531fb9458279c08432357175e2db7cfa (diff) | |
download | hdf5-359d51effedde76636e0a65f0580b6bcfcb5753d.zip hdf5-359d51effedde76636e0a65f0580b6bcfcb5753d.tar.gz hdf5-359d51effedde76636e0a65f0580b6bcfcb5753d.tar.bz2 |
[svn-r24170] - add properties to dxpl and fapl for raw and metadata integrity verification scope (still ignored for now).
- update interface for H5Fopen_ff to switch order of *rcxt_id and eq_id
Diffstat (limited to 'examples')
-rw-r--r-- | examples/h5ff_client_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5ff_client_open.c b/examples/h5ff_client_open.c index 6496cae..e4b9240 100644 --- a/examples/h5ff_client_open.c +++ b/examples/h5ff_client_open.c @@ -64,7 +64,7 @@ int main(int argc, char **argv) { assert(event_q);
/* Open the file and ask to acquire the latest readable version */
- file_id = H5Fopen_ff(file_name, H5F_ACC_RDONLY, fapl_id, H5_EVENT_QUEUE_NULL, &rid1);
+ file_id = H5Fopen_ff(file_name, H5F_ACC_RDONLY, fapl_id, &rid1, H5_EVENT_QUEUE_NULL);
assert(file_id);
/* query the latest readable version number */
|