daemon: Fix namespace issue.
authorEelco Dolstra <eelco.dolstra@logicblox.com>
Mon, 9 Nov 2015 16:16:28 +0000 (17:16 +0100)
committerLudovic Courtès <ludo@gnu.org>
Wed, 2 Dec 2015 17:37:59 +0000 (19:37 +0200)
nix/libutil/util.hh

index 8fa1efb..e84d64d 100644 (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)