Fix Win32 build of SGPath.

This commit is contained in:
James Turner
2010-08-09 09:13:28 +01:00
parent c4b4c0ce59
commit cc435ba817

View 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