]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/file.cpp
no message
[wxWidgets.git] / src / common / file.cpp
index 44c4b7b77fedde9dca0ff1246a98c3803b70ded3..6cb6e3f0592cd1f37e648b66918c8ce01a0f02df 100644 (file)
@@ -132,7 +132,7 @@ bool wxFile::Exists(const char *name)
 
 bool wxFile::Access(const char *name, OpenMode mode)
 {
-  int how;
+  int how = 0;
 
   switch ( mode ) {
     case read:
@@ -276,7 +276,7 @@ bool wxFile::Flush()
   if ( IsOpened() ) {
                // @@@ fsync() is not ANSI (BSDish)
 //    if ( fsync(m_fd) == -1 ) { // TODO
-      if (TRUE) {
+      if (wxTrue) {
       wxLogSysError(_("can't flush file descriptor %d"), m_fd);
       return FALSE;
     }