diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-12-05 10:45:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-12-05 18:18:10 +0100 |
commit | 638ccde1fb47220b50de479dcf9f4273516e83d5 (patch) | |
tree | 9eb6891bbfa40f06836cf9a2ade6e376d81aab98 /nix | |
parent | 8f35c0306192c4b62646f2aa02879c2a8c4f4a07 (diff) | |
download | guix-638ccde1fb47220b50de479dcf9f4273516e83d5.tar 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.cc | 4 |
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: |