[svn-r5399] Purpose:

Bug Fix

Description:
    Missed adding the 'closing' parameter to one 'flush' function.

Platforms tested:
    FreeBSD 4.5 (sleipnir)
This commit is contained in:
Quincey Koziol 2002-05-11 12:06:20 -05:00
parent 6cb7accfeb
commit 9ed006d12f

View File

@ -898,7 +898,7 @@ static herr_t H5FD_stream_close (H5FD_t *_stream)
FUNC_ENTER (H5FD_stream_close, FAIL);
/* Flush */
if (H5FD_stream_flush (_stream) != SUCCEED)
if (H5FD_stream_flush (_stream, TRUE) != SUCCEED)
{
HRETURN_ERROR (H5E_FILE, H5E_CANTFLUSH, FAIL, "unable to flush file");
}