diff options
Diffstat (limited to 'src/common.cpp')
-rw-r--r-- | src/common.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.cpp b/src/common.cpp index b4258f6..8f59fba 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -81,7 +81,7 @@ const char *readFile(const char *path){ unsigned int size; GLchar *buf; - if ( !in.is_open() ) + if (!in.is_open()) UserError("Error reading file " + (std::string)path + "!"); in.seekg(0,in.end); @@ -95,7 +95,7 @@ const char *readFile(const char *path){ } void -UserError( std::string reason ) +UserError(std::string reason) { std::cout << "User error: " << reason << "!" << std::endl; abort(); |