Explorar o código

Update DefaultIOSystem.cpp

Added missing whitespace
Marka Ragnos hai 1 ano
pai
achega
3ce8a58d41
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      code/Common/DefaultIOSystem.cpp

+ 1 - 1
code/Common/DefaultIOSystem.cpp

@@ -102,7 +102,7 @@ bool DefaultIOSystem::Exists(const char *pFile) const {
 	struct stat statbuf;
     stat(pFile, &statbuf);
     // test for a regular file
-    if (!S_ISREG(statbuf.st_mode)){
+    if (!S_ISREG(statbuf.st_mode)) {
         return false;
     }
 #endif