diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-09-17T13·00+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-09-17T13·00+0000 |
commit | 4af2fdba6d709d0b9bb77dd58ceb6e16d6cd4cfa (patch) | |
tree | 4400e3784fc5a2ba9cef1afed1828ff4c154e8a3 /src | |
parent | c987061aa401eaad984aaa3058aa0506df4f46da (diff) |
* Typo.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/gc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc index 5752e408a80d..729e7b345881 100644 --- a/src/libstore/gc.cc +++ b/src/libstore/gc.cc @@ -766,7 +766,7 @@ void LocalStore::collectGarbage(const GCOptions & options, GCResults & results) while (!prioQueue.empty()) { checkInterrupt(); Path path = prioQueue.top(); prioQueue.pop(); - printMsg(lvlInfo, format("deleting `%1%' (last accesses %2%)") % path % showTime("%F %H:%M:%S", atimeComp.cache[path])); + printMsg(lvlInfo, format("deleting `%1%' (last accessed %2%)") % path % showTime("%F %H:%M:%S", atimeComp.cache[path])); PathSet references; if (isValidPath(path)) references = queryReferencesNoSelf(path); |