summaryrefslogtreecommitdiffstats
path: root/src/H5FDsec2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDsec2.c')
-rw-r--r--src/H5FDsec2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c
index 225da14..6cf835c 100644
--- a/src/H5FDsec2.c
+++ b/src/H5FDsec2.c
@@ -807,7 +807,7 @@ H5FD_sec2_flush(H5FD_t *_file, hid_t UNUSED dxpl_id, unsigned UNUSED closing)
assert(file);
/* Extend the file to make sure it's large enough */
- if (file->eoa>file->eof) {
+ if (file->eoa!=file->eof) {
#ifdef WIN32
/* Map the posix file handle to a Windows file handle */
filehandle = _get_osfhandle(file->fd);