summaryrefslogtreecommitdiffstats
path: root/src/H5FDdirect.c
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2011-03-24 14:42:23 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2011-03-24 14:42:23 (GMT)
commit8c8dad1cc779566fc689a93b0d248299786e4ce7 (patch)
tree34a1fda83e8c0d009617648257b0dbfbffb5facd /src/H5FDdirect.c
parent3c866e69a678bb383fce11c31cb1b1e94eb1e6c1 (diff)
downloadhdf5-8c8dad1cc779566fc689a93b0d248299786e4ce7.zip
hdf5-8c8dad1cc779566fc689a93b0d248299786e4ce7.tar.gz
hdf5-8c8dad1cc779566fc689a93b0d248299786e4ce7.tar.bz2
[svn-r20309] Purpose:
Interim checkin of 'avoid truncate' feature to development branch. Description: Bringing initial changes in support of 'avoid truncate' feature to a branch off the trunk. While this feature is not yet complete, I didn't want to continue working solely from a local copy. Development will continue on the branch and be merged to the trunk after thorough review and testing. Tested: While I've added and run tests of new code changes thus far, no extensive regression testing has been performed as of yet. This will be done before merging back to trunk.
Diffstat (limited to 'src/H5FDdirect.c')
-rw-r--r--src/H5FDdirect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c
index 29fd84f..09f78ac 100644
--- a/src/H5FDdirect.c
+++ b/src/H5FDdirect.c
@@ -854,7 +854,7 @@ H5FD_direct_get_eof(const H5FD_t *_file)
FUNC_ENTER_NOAPI(H5FD_direct_get_eof, HADDR_UNDEF)
/* Set return value */
- ret_value=MAX(file->eof, file->eoa);
+ ret_value=file->eof;
done:
FUNC_LEAVE_NOAPI(ret_value)