diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-11 17:06:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-11 17:06:20 (GMT) |
commit | 9ed006d12f13fb0ce86a03e997b251f20c0f8822 (patch) | |
tree | ac11ecc245dc7736f96205b59df264115ae4470d /src/H5FDstream.c | |
parent | 6cb7accfeb16ef72461dd32f3b387087146b1254 (diff) | |
download | hdf5-9ed006d12f13fb0ce86a03e997b251f20c0f8822.zip hdf5-9ed006d12f13fb0ce86a03e997b251f20c0f8822.tar.gz hdf5-9ed006d12f13fb0ce86a03e997b251f20c0f8822.tar.bz2 |
[svn-r5399] Purpose:
Bug Fix
Description:
Missed adding the 'closing' parameter to one 'flush' function.
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src/H5FDstream.c')
-rw-r--r-- | src/H5FDstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDstream.c b/src/H5FDstream.c index ac38c45..36aa705 100644 --- a/src/H5FDstream.c +++ b/src/H5FDstream.c @@ -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"); } |