summaryrefslogtreecommitdiff
path: root/src/signalController.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/signalController.h')
-rw-r--r--src/signalController.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/signalController.h b/src/signalController.h
index c893e15..6b8a92a 100644
--- a/src/signalController.h
+++ b/src/signalController.h
@@ -156,7 +156,7 @@ private:
typedef std::map<int, SignalHandler*> HandlerMap;
#ifndef _MSC_VER
- SignalController() : thread(null) {};
+ SignalController() : thread(NULL) {};
#else
SignalController() {};
#endif
@@ -178,7 +178,7 @@ private:
Mutex sigQueueMutex;
Semaphore sigQueueSem;
-#ifdef _MSC_VER
+#ifndef _MSC_VER
boost::thread* thread;
#endif
HandlerMap handler;