From ea80026c344f2606c6e3a75477d47f696d41bec6 Mon Sep 17 00:00:00 2001 From: g0dil <g0dil@wiback.org> Date: Tue, 3 Jun 2008 15:22:56 +0000 Subject: [PATCH] Console: Fix stupid scoping bug --- Console/Server.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console/Server.cc b/Console/Server.cc index d990bb3e6..dc169fa89 100644 --- a/Console/Server.cc +++ b/Console/Server.cc @@ -94,7 +94,7 @@ prefix_ senf::console::Server & senf::console::Server::start(ServerHandle handle } prefix_ senf::console::Server::Server(ServerHandle handle) - : handle_ (handle), root_ (root().thisptr()), mode_ (Automatic) + : handle_ (handle), root_ (senf::console::root().thisptr()), mode_ (Automatic) { Scheduler::instance().add( handle_, senf::membind(&Server::newClient, this) ); } -- GitLab