daemon: Fix namespace issue.
1 files changed, 2 insertions(+), 2 deletions(-) M nix/libutil/util.hh
M nix/libutil/util.hh => nix/libutil/util.hh +2 -2
@@ 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)