summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorJacob Smith <jake.smith@hdfgroup.org>2018-12-13 16:47:52 (GMT)
committerJacob Smith <jake.smith@hdfgroup.org>2018-12-13 16:47:52 (GMT)
commita959914695b35e89f27190afbba91bd748f5cdc2 (patch)
tree8805af9185efdd4b1c71a2e3f9fca41fbf30cf11 /src/H5Fprivate.h
parent943b7f9c0276b225b93287227a8c31dc556666b7 (diff)
downloadhdf5-a959914695b35e89f27190afbba91bd748f5cdc2.zip
hdf5-a959914695b35e89f27190afbba91bd748f5cdc2.tar.gz
hdf5-a959914695b35e89f27190afbba91bd748f5cdc2.tar.bz2
fix reference; move declaration in file
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index f728200..53dd4c8 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -391,7 +391,7 @@ typedef struct H5F_t H5F_t;
#define H5F_FIRST_ALLOC_DEALLOC(F) (H5F_get_first_alloc_dealloc(F))
#define H5F_EOA_PRE_FSM_FSALLOC(F) (H5F_get_eoa_pre_fsm_fsalloc(F))
#define H5F_MIN_DSET_OHDR(F) (H5F_get_min_dset_ohdr(F))
-#define H5F_SET_MIN_DSET_OHDR(F) (H5F_get_min_dset_ohdr((F), (V)))
+#define H5F_SET_MIN_DSET_OHDR(F) (H5F_set_min_dset_ohdr((F), (V)))
#endif /* H5F_MODULE */
@@ -747,6 +747,7 @@ H5_DLL hbool_t H5F_get_point_of_no_return(const H5F_t *f);
H5_DLL hbool_t H5F_get_first_alloc_dealloc(const H5F_t *f);
H5_DLL haddr_t H5F_get_eoa_pre_fsm_fsalloc(const H5F_t *f);
H5_DLL hbool_t H5F_get_min_dset_ohdr(const H5F_t *f);
+H5_DLL herr_t H5F_set_min_dset_ohdr(H5F_t *f, hbool_t minimize);
/* Functions than retrieve values set/cached from the superblock/FCPL */
H5_DLL haddr_t H5F_get_base_addr(const H5F_t *f);
@@ -784,7 +785,6 @@ H5_DLL void H5F_set_coll_md_read(H5F_t *f, H5P_coll_md_read_flag_t flag);
H5_DLL hbool_t H5F_use_mdc_logging(const H5F_t *f);
H5_DLL hbool_t H5F_start_mdc_log_on_access(const H5F_t *f);
H5_DLL char *H5F_mdc_log_location(const H5F_t *f);
-H5_DLL herr_t H5F_set_min_dset_ohdr(H5F_t *f, hbool_t minimize);
/* Functions that retrieve values from VFD layer */
H5_DLL hid_t H5F_get_driver_id(const H5F_t *f);