From 092a41fe51ea58ab388d5f5d577f7d4a16a1f5b8 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 3 Feb 2003 17:53:44 -0500 Subject: [svn-r6374] Purpose: Update Description: Converted the "FUNC_LEAVE" macros to "FUNC_LEAVE_NOAPI" to be consistent with the rest of the library. Note: This is probably completely useless as the file is going to go away with the new model of the SAP as metadata cache...But it helps me compile... Platforms tested: Linux (FPHDF5) --- src/H5Ofphdf5.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/H5Ofphdf5.c b/src/H5Ofphdf5.c index a35d001..23c6351 100644 --- a/src/H5Ofphdf5.c +++ b/src/H5Ofphdf5.c @@ -205,7 +205,7 @@ done: H5FL_FREE(H5O_fphdf5_t, fmeta); } - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* @@ -305,7 +305,7 @@ H5O_fphdf5_encode(H5F_t *f, uint8_t *p, const void *mesg) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed"); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* @@ -354,7 +354,7 @@ H5O_fphdf5_copy(const void *mesg, void *dest) ret_value = dst; done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* @@ -395,7 +395,7 @@ H5O_fphdf5_size(H5F_t *f, const void *mesg) ret_value += H5O_PLIST[0].raw_size(f, fmeta->plist); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* @@ -445,7 +445,7 @@ H5O_fphdf5_reset(void *mesg) ret_value = H5O_PLIST[0].reset(fmeta->plist); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* @@ -492,7 +492,7 @@ H5O_fphdf5_free(void *mesg) H5FL_FREE(H5O_fphdf5_t, fmeta); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* @@ -547,7 +547,7 @@ H5O_fphdf5_debug(H5F_t UNUSED *f, const void *mesg, HDfprintf(stream, "}\n"); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } #endif /* H5_HAVE_FPHDF5 */ -- cgit v0.12