summaryrefslogtreecommitdiff
path: root/src/threadengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/threadengine.cpp')
-rw-r--r--src/threadengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threadengine.cpp b/src/threadengine.cpp
index a2af55e87..7e1e76693 100644
--- a/src/threadengine.cpp
+++ b/src/threadengine.cpp
@@ -46,7 +46,7 @@ void Thread::Start()
if (!this->handle)
this->handle = std::make_unique<std::thread>(entry_point, this);
}
- catch (const std::system_error& err)
+ catch (const std::system_error &err)
{
this->flags[SF_DEAD] = true;
throw CoreException("Unable to create thread: " + std::string(err.what()));