fix issue #449 failed build of freebsd 10.1

This commit is contained in:
Jeff Becker
2016-03-28 17:15:27 -04:00
parent 64d7c87591
commit 0a3c4f131e

2
Log.h
View File

@@ -140,7 +140,7 @@ namespace log {
LogLevel level; /**< message level */
std::thread::id tid; /**< id of thread that generated message */
LogMsg (LogLevel lvl, std::time_t ts, const std::string & txt): timestamp(ts), text(txt), level(lvl), tid(0) {};
LogMsg (LogLevel lvl, std::time_t ts, const std::string & txt): timestamp(ts), text(txt), level(lvl) {};
};
Log & Logger();