diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-12-15T21·11+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-12-15T21·11+0000 |
commit | 530b27df1e71852580d8b0d474543aeffe65618f (patch) | |
tree | 166f79c170b19ad82ca6bf9a3c77b96325b72aa1 /src/libstore/store.hh | |
parent | 5144f750c471cdb629750e96ddc913fb01fb9eef (diff) |
* `nix-store --gc' prints out the number of bytes freed on stdout
(even when it is interrupted by a signal).
Diffstat (limited to 'src/libstore/store.hh')
-rw-r--r-- | src/libstore/store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store.hh b/src/libstore/store.hh index 0f35ff0c626c..2d8018d5fabc 100644 --- a/src/libstore/store.hh +++ b/src/libstore/store.hh @@ -155,7 +155,7 @@ Path addTextToStore(const string & suffix, const string & s, const PathSet & references); /* Delete a value from the nixStore directory. */ -void deleteFromStore(const Path & path); +void deleteFromStore(const Path & path, unsigned long long & bytesFreed); void verifyStore(bool checkContents); |