diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-03 22:53:44 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-03 22:53:44 (GMT) |
commit | 092a41fe51ea58ab388d5f5d577f7d4a16a1f5b8 (patch) | |
tree | 3ed16282db33705993f6e08084523542f7639ed9 /src | |
parent | b14417185c487c900ea210f346c910a9bfe1d506 (diff) | |
download | hdf5-092a41fe51ea58ab388d5f5d577f7d4a16a1f5b8.zip hdf5-092a41fe51ea58ab388d5f5d577f7d4a16a1f5b8.tar.gz hdf5-092a41fe51ea58ab388d5f5d577f7d4a16a1f5b8.tar.bz2 |
[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)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Ofphdf5.c | 14 |
1 files 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 */ |