From 7873cfb18df352d75628ea8f6f426a0c8e066ab7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 25 Feb 2016 11:55:05 +0100 Subject: Fix build --- src/nix/build.cc | 2 +- src/nix/command.cc | 2 +- src/nix/hash.cc | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/nix') diff --git a/src/nix/build.cc b/src/nix/build.cc index 35603f557a98..812464d7582b 100644 --- a/src/nix/build.cc +++ b/src/nix/build.cc @@ -43,4 +43,4 @@ struct CmdBuild : StoreCommand, MixDryRun, MixInstallables } }; -static RegisterCommand r1(make_ref()); +static RegisterCommand r1(make_ref()); diff --git a/src/nix/command.cc b/src/nix/command.cc index 698863349334..9c80f43093c5 100644 --- a/src/nix/command.cc +++ b/src/nix/command.cc @@ -59,7 +59,7 @@ bool MultiCommand::processArgs(const Strings & args, bool finish) void StoreCommand::run() { - run(openStore(reserveSpace)); + run(openStore()); } } diff --git a/src/nix/hash.cc b/src/nix/hash.cc index 452aa4ef67c0..5dd891e8add3 100644 --- a/src/nix/hash.cc +++ b/src/nix/hash.cc @@ -45,8 +45,8 @@ struct CmdHash : Command } }; -static RegisterCommand r1(make_ref(CmdHash::mFile)); -static RegisterCommand r2(make_ref(CmdHash::mPath)); +static RegisterCommand r1(make_ref(CmdHash::mFile)); +static RegisterCommand r2(make_ref(CmdHash::mPath)); struct CmdToBase : Command { @@ -82,8 +82,8 @@ struct CmdToBase : Command } }; -static RegisterCommand r3(make_ref(false)); -static RegisterCommand r4(make_ref(true)); +static RegisterCommand r3(make_ref(false)); +static RegisterCommand r4(make_ref(true)); /* Legacy nix-hash command. */ static int compatNixHash(int argc, char * * argv) -- cgit 1.4.1