From: Vadim Zeitlin Date: Thu, 4 Aug 2005 01:04:17 +0000 (+0000) Subject: configure defines HAVE_FSYNC, not wxHAVE_FSYNC X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/82ff64fdb75496ae57f61731feec1529780eb1c3 configure defines HAVE_FSYNC, not wxHAVE_FSYNC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35085 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/file.cpp b/src/common/file.cpp index 9985b9d448..1e6f0e41e1 100644 --- a/src/common/file.cpp +++ b/src/common/file.cpp @@ -335,7 +335,7 @@ size_t wxFile::Write(const void *pBuf, size_t nCount) bool wxFile::Flush() { if ( IsOpened() ) { -#if defined(__VISUALC__) || wxHAVE_FSYNC +#if defined(__VISUALC__) || HAVE_FSYNC if ( wxFsync(m_fd) == -1 ) { wxLogSysError(_("can't flush file descriptor %d"), m_fd);