diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-15T09·19+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-15T09·19+0200 |
commit | 690adeb03de039551c4d8b5b4e7dda21c9c8f9b9 (patch) | |
tree | da74f2de3e4bddcb7720938cb092d200da40ec22 /src/libstore/optimise-store.cc | |
parent | a1b66f316e980b4b7e755de47604bdc30371b67e (diff) |
Remove tab
Diffstat (limited to 'src/libstore/optimise-store.cc')
-rw-r--r-- | src/libstore/optimise-store.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/optimise-store.cc b/src/libstore/optimise-store.cc index 3615bc300afa..39b9e587a4fb 100644 --- a/src/libstore/optimise-store.cc +++ b/src/libstore/optimise-store.cc @@ -89,7 +89,7 @@ Strings LocalStore::readDirectoryIgnoringInodes(const Path & path, const InodeHa void LocalStore::optimisePath_(OptimiseStats & stats, const Path & path, InodeHash & inodeHash) { checkInterrupt(); - + struct stat st; if (lstat(path.c_str(), &st)) throw SysError(format("getting attributes of path `%1%'") % path); @@ -145,7 +145,7 @@ void LocalStore::optimisePath_(OptimiseStats & stats, const Path & path, InodeHa if (link(path.c_str(), linkPath.c_str()) == 0) { inodeHash.insert(st.st_ino); return; - } + } if (errno != EEXIST) throw SysError(format("cannot link `%1%' to `%2%'") % linkPath % path); /* Fall through if another process created ‘linkPath’ before |