[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: daemon: Fix namespace issue.
From: |
Ludovic Courtès |
Subject: |
05/07: daemon: Fix namespace issue. |
Date: |
Wed, 02 Dec 2015 17:39:10 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 14fb686a21d786afa699a38d20929a88be6e541d
Author: Eelco Dolstra <address@hidden>
Date: Mon Nov 9 17:16:28 2015 +0100
daemon: Fix namespace issue.
---
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 8fa1efb..e84d64d 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)
- branch master updated (18b3151 -> 708d907), Ludovic Courtès, 2015/12/02
- 04/07: daemon: Support SHA-512 hashes., Ludovic Courtès, 2015/12/02
- 03/07: daemon: int2String -> std::to_string., Ludovic Courtès, 2015/12/02
- 07/07: daemon: Add 'buildMode' parameter to 'buildPaths' RPC., Ludovic Courtès, 2015/12/02
- 06/07: daemon: optimizePath: Detect some .links corruptions., Ludovic Courtès, 2015/12/02
- 05/07: daemon: Fix namespace issue.,
Ludovic Courtès <=
- 02/07: daemon: Filter build-chroot-dirs entries that conflict with derivation outputs., Ludovic Courtès, 2015/12/02
- 01/07: daemon: Prevent .chroot from being GC'ed when using LocalStore::buildDerivation(), Ludovic Courtès, 2015/12/02