Update DefaultIOSystem.cpp

Added missing whitespace
pull/5359/head
Marka Ragnos 2023-12-09 19:01:04 +01:00 committed by GitHub
parent 458f36caec
commit db0e63a414
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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