diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-10 17:30:13 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-10 17:30:13 +0000 |
commit | 3151262b41f011e0f5707565461ce46447f12b07 (patch) | |
tree | 8e4ddd2f472b9cf53591e5e2011fb491176af404 /win/inspircd_namedpipe.cpp | |
parent | 26cd5393c9308fabe73c41870f06f73a5b001cd7 (diff) |
Compile fixes for latest changes to trunk.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11821 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win/inspircd_namedpipe.cpp')
-rw-r--r-- | win/inspircd_namedpipe.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/inspircd_namedpipe.cpp b/win/inspircd_namedpipe.cpp index 95c0ae578..76d16037b 100644 --- a/win/inspircd_namedpipe.cpp +++ b/win/inspircd_namedpipe.cpp @@ -130,8 +130,8 @@ void IPCThread::SetResult(int newresult) IPC::IPC()
{
/* The IPC pipe is threaded */
- thread = new IPCThread(Srv);
- Srv->Threads->Start(thread);
+ thread = new IPCThread();
+ ServerInstance->Threads->Start(thread);
}
void IPC::Check()
|