about summary refs log tree commit diff
path: root/src/nix/run.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-08-31T09·05+0200
committerEelco Dolstra <edolstra@gmail.com>2017-08-31T09·05+0200
commitfabde432dc046183b1eeaf9265effa47e89c3236 (patch)
tree09ddd328e3aa8143f3704a1d12e8c9ab36ae00a5 /src/nix/run.cc
parent9f47eac92bd80604e51cb710656133b5cd6be3ed (diff)
Fix build failure on non-Linux
https://hydra.nixos.org/build/59649086
Diffstat (limited to '')
-rw-r--r--src/nix/run.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/run.cc b/src/nix/run.cc
index 2fc93a05c5..fcde540fc2 100644
--- a/src/nix/run.cc
+++ b/src/nix/run.cc
@@ -202,6 +202,6 @@ void chrootHelper(int argc, char * * argv)
     throw SysError("unable to exec '%s'", cmd);
 
 #else
-    throw Error("mounting the Nix store on '%s' is not supported on this platform", >storeDir);
+    throw Error("mounting the Nix store on '%s' is not supported on this platform", storeDir);
 #endif
 }