mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
daemon: Fix namespace issue.
This commit is contained in:
parent
29d3242e5c
commit
14fb686a21
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue