mirror of
https://github.com/anope/anope.git
synced 2026-06-26 12:16:38 +02:00
Epic commit to replace most of the strings in Anope with a single Anope::string class, plus some other little fixes here and there. If you follow 1.9.x development and are testing things, THIS is one of those things that NEEDS testing.
This commit is contained in:
@@ -47,7 +47,7 @@ void ThreadEngine::Start(Thread *thread)
|
||||
if (pthread_create(&thread->Handle, &threadengine_attr, entry_point, thread))
|
||||
{
|
||||
delete thread;
|
||||
throw CoreException("Unable to create thread: " + std::string(strerror(errno)));
|
||||
throw CoreException(Anope::string("Unable to create thread: ") + strerror(errno));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user