From c5f6a690de879769992a58d151bd517b61263958 Mon Sep 17 00:00:00 2001 From: hagen Date: Tue, 19 Jan 2016 00:00:00 +0000 Subject: [PATCH] * Daemon.h : use boolean variables for flags --- Daemon.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Daemon.h b/Daemon.h index 6252ffe4..e755e3e9 100644 --- a/Daemon.h +++ b/Daemon.h @@ -21,10 +21,10 @@ namespace i2p virtual bool start(); virtual bool stop(); - int isLogging; - int isDaemon; + bool isLogging; + bool isDaemon; - int running; + bool running; protected: Daemon_Singleton();