summaryrefslogtreecommitdiff
path: root/src/lib/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/server.h')
-rw-r--r--src/lib/server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/server.h b/src/lib/server.h
index 8c0f86ebb..58cfe0b3f 100644
--- a/src/lib/server.h
+++ b/src/lib/server.h
@@ -74,7 +74,7 @@ private:
class Server
{
public:
- Server ();
+ Server (Log* log);
void run ();
@@ -86,5 +86,5 @@ private:
std::list<boost::shared_ptr<boost::asio::ip::tcp::socket> > _queue;
boost::mutex _worker_mutex;
boost::condition _worker_condition;
- Log _log;
+ Log* _log;
};