diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-11-09 17:16:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-02 19:37:59 +0200 |
commit | 14fb686a21d786afa699a38d20929a88be6e541d (patch) | |
tree | 22d907394f33234c9c994b70271fc29a762c1c29 /nix | |
parent | 29d3242e5c428d3b0e8dc9db1c81cd4053e5271c (diff) | |
download | patches-14fb686a21d786afa699a38d20929a88be6e541d.tar patches-14fb686a21d786afa699a38d20929a88be6e541d.tar.gz |
daemon: Fix namespace issue.
Diffstat (limited to 'nix')
-rw-r--r-- | nix/libutil/util.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/libutil/util.hh b/nix/libutil/util.hh index 8fa1efbf37..e84d64d10a 100644 --- a/nix/libutil/util.hh +++ b/nix/libutil/util.hh @@ -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) |