diff options
author | Shea Levy <shea@shealevy.com> | 2016-09-02T10·35-0400 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2016-09-02T10·35-0400 |
commit | a91954f0c658e90b08f7f6e371305281e4d7d329 (patch) | |
tree | 6d7c3b6b61515e667bc34df8cd3e2cc152fd0ae4 /src/nix/command.cc | |
parent | 87b189c2b326c790a35ff53a2d825c1ef48f644e (diff) |
Merge openStore and openStoreAt with default arguments
Diffstat (limited to 'src/nix/command.cc')
-rw-r--r-- | src/nix/command.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/command.cc b/src/nix/command.cc index 37534015b89f..fdf6ae6affaf 100644 --- a/src/nix/command.cc +++ b/src/nix/command.cc @@ -81,7 +81,7 @@ StoreCommand::StoreCommand() void StoreCommand::run() { - run(openStoreAt(storeUri)); + run(openStore(storeUri)); } StorePathsCommand::StorePathsCommand() |