daemon: Fix namespace issue.

This commit is contained in:
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) \
do { \
if (level <= verbosity) { \
printMsg_(level, (f)); \
if (level <= nix::verbosity) { \
nix::printMsg_(level, (f)); \
} \
} while (0)