diff options
author | Adam <Adam@anope.org> | 2010-10-11 19:21:59 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-11 19:21:59 -0400 |
commit | afb55a1842e57bc6a4b61e70c047ea57597c5a69 (patch) | |
tree | 622c68fbebcab22aa077acbbf7e435aaf42b83e9 /src/threadengines/threadengine_win32.cpp | |
parent | d7aa5f6a3a69c69b5ab3d2ddcdfd2f819e840703 (diff) |
Fixed Windows again
Diffstat (limited to 'src/threadengines/threadengine_win32.cpp')
-rw-r--r-- | src/threadengines/threadengine_win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp index 8fb103267..b270a895d 100644 --- a/src/threadengines/threadengine_win32.cpp +++ b/src/threadengines/threadengine_win32.cpp @@ -41,7 +41,7 @@ void ThreadEngine::Start(Thread *thread) if (!thread->Handle) { delete thread; - throw CoreException(Anope::string("Unable to create thread: ") + LastError()); + throw CoreException(Anope::string("Unable to create thread: ") + Anope::LastError()); } } |