summaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-12-05 10:45:13 +0100
committerLudovic Courtès <ludo@gnu.org>2016-12-05 18:18:10 +0100
commit638ccde1fb47220b50de479dcf9f4273516e83d5 (patch)
tree9eb6891bbfa40f06836cf9a2ade6e376d81aab98 /nix
parent8f35c0306192c4b62646f2aa02879c2a8c4f4a07 (diff)
downloadgnu-guix-638ccde1fb47220b50de479dcf9f4273516e83d5.tar
gnu-guix-638ccde1fb47220b50de479dcf9f4273516e83d5.tar.gz
daemon: Fix invalid Boost format string.
* nix/libstore/optimise-store.cc (LocalStore::optimisePath_): Use %3% instead of %m, the latter being an invalid Boost format specifier.
Diffstat (limited to 'nix')
-rw-r--r--nix/libstore/optimise-store.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/nix/libstore/optimise-store.cc b/nix/libstore/optimise-store.cc
index 565c62ca83..9bed371c70 100644
--- a/nix/libstore/optimise-store.cc
+++ b/nix/libstore/optimise-store.cc
@@ -5,6 +5,7 @@
#include "globals.hh"
#include <cstdlib>
+#include <cstring>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
@@ -159,7 +160,8 @@ void LocalStore::optimisePath_(OptimiseStats & stats, const Path & path, InodeHa
/* On ext4, that probably means the directory index is full. When
that happens, it's fine to ignore it: we just effectively
disable deduplication of this file. */
- printMsg(lvlInfo, format("cannot link `%1%' to `%2%': %m") % linkPath % path);
+ printMsg(lvlInfo, format("cannot link `%1%' to `%2%': %3%")
+ % linkPath % path % strerror(ENOSPC));
return;
default: