diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2012-02-10 15:35:47 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2012-02-10 15:35:47 (GMT) |
commit | 841a7f4b50c886112e59a1eb70ba87a4693a2973 (patch) | |
tree | e2504f8332e2571db909f76f4ea45647dc576947 /src/H5FDdirect.c | |
parent | 3d9e0b86acb27b4aeb21371407b145c692dfd606 (diff) | |
download | hdf5-841a7f4b50c886112e59a1eb70ba87a4693a2973.zip hdf5-841a7f4b50c886112e59a1eb70ba87a4693a2973.tar.gz hdf5-841a7f4b50c886112e59a1eb70ba87a4693a2973.tar.bz2 |
[svn-r21924] Description:
Correct a few typos in r21923 checkin that caused failures on linew & ember.
Tested on:
Mac OSX/64 10.7.3 (amazon) w/debug, production & parallel
Diffstat (limited to 'src/H5FDdirect.c')
-rw-r--r-- | src/H5FDdirect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c index 8f3cf45..fc28a41 100644 --- a/src/H5FDdirect.c +++ b/src/H5FDdirect.c @@ -770,7 +770,7 @@ H5FD_direct_get_eoa(const H5FD_t *_file, H5FD_mem_t UNUSED type) { const H5FD_direct_t *file = (const H5FD_direct_t*)_file; - FUNC_ENTER_NOAPI_NOINIT_NOER + FUNC_ENTER_NOAPI_NOINIT_NOERR FUNC_LEAVE_NOAPI(file->eoa) } @@ -835,7 +835,7 @@ H5FD_direct_get_eof(const H5FD_t *_file) { const H5FD_direct_t *file = (const H5FD_direct_t*)_file; - FUNC_ENTER_NOAPI(H5FD_direct_get_eof, HADDR_UNDEF) + FUNC_ENTER_NOAPI(HADDR_UNDEF) FUNC_LEAVE_NOAPI(MAX(file->eof, file->eoa)) } |