From: Michael Wetherell Date: Wed, 15 Feb 2006 21:16:10 +0000 (+0000) Subject: Warning fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0c09451870888f9c774f86d9a34ac348d41d2da9 Warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37612 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/streams/largefile.cpp b/tests/streams/largefile.cpp index 42ebb03ee9..8a11a3bf82 100644 --- a/tests/streams/largefile.cpp +++ b/tests/streams/largefile.cpp @@ -255,7 +255,7 @@ wxOutputStream *LargeFileTest_wxFFile::MakeOutStream(const wxString& name) const bool LargeFileTest_wxFFile::HasLFS() const { -#if HAVE_FSEEKO +#ifdef HAVE_FSEEKO return (wxFileOffset)0xffffffff > 0; #else return false;