diff options
Diffstat (limited to 'src/log.cpp')
-rw-r--r-- | src/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/log.cpp b/src/log.cpp index 39d0183d..25d94faf 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -86,7 +86,7 @@ void error(const std::string error_text) { log("Error", error_text.c_str()); #ifdef WIN32 - MessageBox(NULL, error_text.c_str(), "Error", MB_ICONERROR|MB_OK); + MessageBox(NULL, error_text.c_str(), "Error", MB_ICONERROR | MB_OK); #else fprintf(stderr, "Error: %s\n", error_text.c_str()); #endif |