diff options
Diffstat (limited to 'src/threadengine.cpp')
-rw-r--r-- | src/threadengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threadengine.cpp b/src/threadengine.cpp index 08765c4e4..625e97713 100644 --- a/src/threadengine.cpp +++ b/src/threadengine.cpp @@ -51,7 +51,7 @@ void Thread::Start() catch (const std::system_error &err) { this->flags[SF_DEAD] = true; - throw CoreException("Unable to create thread: " + std::string(err.what())); + throw CoreException("Unable to create thread: " + Anope::string(err.what())); } } |