]> git.mxchange.org Git - simgear.git/commitdiff
Fix Win32 build of SGPath.
authorJames Turner <zakalawe@mac.com>
Mon, 9 Aug 2010 08:13:28 +0000 (09:13 +0100)
committerJames Turner <zakalawe@mac.com>
Mon, 9 Aug 2010 08:13:28 +0000 (09:13 +0100)
simgear/misc/sg_path.cxx

index fc6856dd5c503da78cdbebd5c99241ca0da5a331..1711cb3ca89ae48a21d5fb703027ef295609867d 100644 (file)
@@ -207,8 +207,8 @@ void SGPath::validate() const
     _exists = false;
   } else {
     _exists = true;
-    _isFile = ((S_IFREG & buf.st_mode ) !=0)
-    _isDir = ((S_IFDIR & buf.st_mode ) !=0)
+    _isFile = ((S_IFREG & buf.st_mode ) !=0);
+    _isDir = ((S_IFDIR & buf.st_mode ) !=0);
   }
 
 #else