diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-07-19T23·16+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-07-19T23·16+0200 |
commit | b3491c781cb4be55f981b7456fcdbe5c4f869f01 (patch) | |
tree | bbc6467a5552c26eb8af8e71b8a05c0e3cc429af /src/libstore/store-api.cc | |
parent | 6bd2c7bb386de16310fa5534275e6e638be60862 (diff) |
More cleanup
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r-- | src/libstore/store-api.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 80f17d109ad6..bb0bc09330c3 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -298,10 +298,10 @@ void exportPaths(StoreAPI & store, const Paths & paths, bool sign, Sink & sink) { for (auto & i : paths) { - writeInt(1, sink); + sink << 1; store.exportPath(i, sign, sink); } - writeInt(0, sink); + sink << 0; } |