diff options
Diffstat (limited to 'src/H5Opline.c')
-rw-r--r-- | src/H5Opline.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/H5Opline.c b/src/H5Opline.c index e95863b..0c7f754 100644 --- a/src/H5Opline.c +++ b/src/H5Opline.c @@ -35,10 +35,8 @@ static void *H5O_pline_copy(const void *_mesg, void *_dest, unsigned update_flag static size_t H5O_pline_size(const H5F_t *f, const void *_mesg); static herr_t H5O_pline_reset(void *_mesg); static herr_t H5O_pline_free(void *_mesg); -static herr_t H5O_pline_get_share (H5F_t *f, const void *_mesg, - H5O_shared_t *sh); -static herr_t H5O_pline_set_share (H5F_t *f, void *_mesg, - const H5O_shared_t *sh); +static herr_t H5O_pline_get_share(const void *_mesg, H5O_shared_t *sh); +static herr_t H5O_pline_set_share(void *_mesg, const H5O_shared_t *sh); static htri_t H5O_pline_is_shared(const void *_mesg); static herr_t H5O_pline_pre_copy_file(H5F_t *file_src, const H5O_msg_class_t *type, const void *mesg_src, hbool_t *deleted, const H5O_copy_t *cpy_info, void *_udata); @@ -606,13 +604,10 @@ done: * Programmer: James Laird * Tuesday, October 10, 2006 * - * Modifications: - * *------------------------------------------------------------------------- */ static herr_t -H5O_pline_get_share(H5F_t UNUSED *f, const void *_mesg, - H5O_shared_t *sh /*out*/) +H5O_pline_get_share(const void *_mesg, H5O_shared_t *sh /*out*/) { const H5O_pline_t *mesg = (const H5O_pline_t *)_mesg; herr_t ret_value = SUCCEED; @@ -644,8 +639,7 @@ H5O_pline_get_share(H5F_t UNUSED *f, const void *_mesg, *------------------------------------------------------------------------- */ static herr_t -H5O_pline_set_share(H5F_t UNUSED *f, void *_mesg/*in,out*/, - const H5O_shared_t *sh) +H5O_pline_set_share(void *_mesg/*in,out*/, const H5O_shared_t *sh) { H5O_pline_t *mesg = (H5O_pline_t *)_mesg; herr_t ret_value = SUCCEED; |