From 3ce8a58d41ceb5c71628c7ccd2907c09b7a09b33 Mon Sep 17 00:00:00 2001 From: Marka Ragnos Date: Sat, 9 Dec 2023 19:01:04 +0100 Subject: [PATCH] Update DefaultIOSystem.cpp Added missing whitespace --- code/Common/DefaultIOSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Common/DefaultIOSystem.cpp b/code/Common/DefaultIOSystem.cpp index 1bda76e50..a72627154 100644 --- a/code/Common/DefaultIOSystem.cpp +++ b/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