diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-05-14 23:04:29 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-05-14 23:04:29 (GMT) |
commit | 19650b0460f9a817b87c9128978b80c51f48b7c6 (patch) | |
tree | 7f24bb1a62c730d5547c58b4efd49299c9c7ef3e | |
parent | 2e2a1d8e31df6e924eecb19691feeee974e32d71 (diff) | |
download | hdf5-19650b0460f9a817b87c9128978b80c51f48b7c6.zip hdf5-19650b0460f9a817b87c9128978b80c51f48b7c6.tar.gz hdf5-19650b0460f9a817b87c9128978b80c51f48b7c6.tar.bz2 |
[svn-r5422] Description:
Corrected typos in the FUNC_ENTER macros of H5FD_sec2_flush and
H5FD_log_flush.
Platforms tested:
modi4 (just tested it compiled fine.)
-rw-r--r-- | src/H5FDlog.c | 2 | ||||
-rw-r--r-- | src/H5FDsec2.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c index 23a3943..2bc356a 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -1216,7 +1216,7 @@ H5FD_log_flush(H5FD_t *_file) { H5FD_log_t *file = (H5FD_log_t*)_file; - FUNC_ENTER(H5FD_log_seek, FAIL); + FUNC_ENTER(H5FD_log_flush, FAIL); if (file->eoa>file->eof) { if (-1==file_seek(file->fd, (file_offset_t)(file->eoa-1), SEEK_SET)) diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c index 986906d..bc00fc8 100644 --- a/src/H5FDsec2.c +++ b/src/H5FDsec2.c @@ -721,7 +721,7 @@ H5FD_sec2_flush(H5FD_t *_file) { H5FD_sec2_t *file = (H5FD_sec2_t*)_file; - FUNC_ENTER(H5FD_sec2_seek, FAIL); + FUNC_ENTER(H5FD_sec2_flush, FAIL); if (file->eoa>file->eof) { if (-1==file_seek(file->fd, (file_offset_t)(file->eoa-1), SEEK_SET)) |