daemon: Fix namespace issue.

master
Eelco Dolstra 2015-11-09 17:16:28 +01:00 committed by Ludovic Courtès
parent 29d3242e5c
commit 14fb686a21
1 changed files with 2 additions and 2 deletions

View File

@ -153,8 +153,8 @@ void printMsg_(Verbosity level, const FormatOrString & fs);
#define printMsg(level, f) \ #define printMsg(level, f) \
do { \ do { \
if (level <= verbosity) { \ if (level <= nix::verbosity) { \
printMsg_(level, (f)); \ nix::printMsg_(level, (f)); \
} \ } \
} while (0) } while (0)