summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-25 11:39:57 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-25 11:39:57 +0000
commit1db1a40c0921d8e0520aa083a0cad470abb2033d (patch)
tree617af8814d5cf476e4fbe2c7135ed89affb0c1d1 /win
parent9b6337bec9b8adfcb1746c76be752334869ac997 (diff)
more of the fix but it still doesnt build. I know we said this might be unstable, but when writing *windows* code can you all please make sure it BUILDS on windows???
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11261 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win')
-rw-r--r--win/inspircd_namedpipe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/inspircd_namedpipe.cpp b/win/inspircd_namedpipe.cpp
index 367243660..93d7c423a 100644
--- a/win/inspircd_namedpipe.cpp
+++ b/win/inspircd_namedpipe.cpp
@@ -131,7 +131,7 @@ IPC::IPC(InspIRCd* Srv) : ServerInstance(Srv)
{
/* The IPC pipe is threaded */
thread = new IPCThread(Srv);
- Srv->Threads->Create(thread);
+ Srv->Threads->Start(thread);
}
void IPC::Check()