diff options
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r-- | src/libstore/store-api.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index e00f01bfd4ff..a560b3f55b8f 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -93,8 +93,8 @@ Path makeFixedOutputPath(bool recursive, } -std::pair<Path, Hash> computeStorePathForPath(bool fixed, bool recursive, - string hashAlgo, const Path & srcPath) +std::pair<Path, Hash> computeStorePathForPath(const Path & srcPath, + bool fixed, bool recursive, string hashAlgo) { Hash h(htSHA256); { |