diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-29T13·50+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-29T13·52+0200 |
commit | 63145be2a5ac46a283f85c835fa84bf54db59bbe (patch) | |
tree | dc6dd049b32003d373ba1f334b0f7539749c1955 /src/libstore/local-store.cc | |
parent | d6064dd19b8941f6b42b54c5d51b3f8848fe89b9 (diff) |
Fix typo
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 207e8a40b6d3..3ac23ec268ff 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -923,7 +923,7 @@ void LocalStore::addToStore(const ValidPathInfo & info, const ref<std::string> & info.path, info.narHash.to_string(), h.to_string()); if (nar->size() != info.narSize) - throw Error("szie mismatch importing path ‘%s’; expected %s, got %s", + throw Error("size mismatch importing path ‘%s’; expected %s, got %s", info.path, info.narSize, nar->size()); if (requireSigs && !dontCheckSigs && !info.checkSignatures(*this, publicKeys)) |