aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libstore/gc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc
index e79d93723..a99bb1a81 100644
--- a/src/libstore/gc.cc
+++ b/src/libstore/gc.cc
@@ -634,7 +634,7 @@ void LocalStore::collectGarbage(const GCOptions & options, GCResults & results)
try {
foreach (vector<Path>::iterator, i, entries_)
- tryToDelete(state, canonPath(nixStore + "/" + *i));
+ tryToDelete(state, nixStore + "/" + *i);
} catch (GCLimitReached & e) {
}
}