* Fix the build.

This commit is contained in:
Eelco Dolstra 2011-12-20 16:37:01 +00:00
parent 194d21f9f6
commit b5363810bb
2 changed files with 2 additions and 2 deletions

View file

@ -332,7 +332,7 @@ PathSet RemoteStore::queryDerivationOutputNames(const Path & path)
writeInt(wopQueryDerivationOutputNames, to);
writeString(path, to);
processStderr();
return readStringSet(from);
return readStrings<PathSet>(from);
}