diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-10T15·14+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-10T15·14+0000 |
commit | 0abe185688aa19c9ca87c9d22e24a54b4b359969 (patch) | |
tree | 3333b11fc912c78d933e6a8ad8c897508aa1833c /src/store.hh | |
parent | d3d5e77810cca11cca95bbb6f0f5e15d23f31eea (diff) |
* `nix --verify': check and repair reverse mapping for successors.
Diffstat (limited to 'src/store.hh')
-rw-r--r-- | src/store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store.hh b/src/store.hh index 7b32a1a731e9..abf874543164 100644 --- a/src/store.hh +++ b/src/store.hh @@ -20,7 +20,7 @@ void copyPath(const Path & src, const Path & dst); we do it in reverse order, we can get an obstructed build (since to rebuild the successor, the outputs paths must not exist). */ void registerSuccessor(const Transaction & txn, - const Path & path1, const Path & path2); + const Path & srcPath, const Path & sucPath); /* Register a substitute. */ void registerSubstitute(const Path & srcPath, const Path & subPath); |