]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/file/filetest.cpp
Fix test compilation under OS X.
[wxWidgets.git] / tests / file / filetest.cpp
index dc3c28669193ea4ca868f595493980eefee37f60..33300577cb81ca286d25afd770847d0b668a8d18 100644 (file)
@@ -76,7 +76,7 @@ void FileTestCase::DoRoundTripTest(const wxMBConv& conv)
         wxFile fin(tf.GetName(), wxFile::read);
         CPPUNIT_ASSERT( fin.IsOpened() );
 
-        const wxFileOffset len = fin.Length();
+        const ssize_t len = fin.Length();
         wxCharBuffer buf(len);
         CPPUNIT_ASSERT_EQUAL( len, fin.Read(buf.data(), len) );