--- src/core/log.h 2009-07-03 23:27:32.000000000 -0700 +++ new_log.h 2009-07-15 15:05:51.000000000 -0700 @@ -194,7 +194,7 @@ NS_LOG_APPEND_TIME_PREFIX; \ NS_LOG_APPEND_CONTEXT; \ NS_LOG_APPEND_FUNC_PREFIX; \ - std::clog << msg << std::endl; \ + std::clog << (msg) << std::endl; \ } \ } \ while (false) @@ -304,7 +304,7 @@ #define NS_LOG_UNCOND(msg) \ do \ { \ - std::clog << msg << std::endl; \ + std::clog << (msg) << std::endl; \ } \ while (false)