fix(3p/nix/libstore): Fix mistake introduced by bracing changes

This statement got included in a loop when it shouldn't have been. At
least it led to some funny derivation files!
This commit is contained in:
Vincent Ambo 2020-05-19 19:37:06 +01:00
parent 1841d93ccb
commit 0b8415124d

View file

@ -200,8 +200,8 @@ static void printString(string& res, const string& s) {
} else { } else {
res += *i; res += *i;
} }
res += '"';
} }
res += '"';
} }
template <class ForwardIterator> template <class ForwardIterator>