diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-09-30 00:41:18 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-09-30 00:41:18 +0000 |
commit | b7597016529cebdc3c9432a101c1f8d9227713cc (patch) | |
tree | 90711f574d7a64845e2f9dc2bdf3e0d80a49eab9 /src/libstore/worker-protocol.hh | |
parent | 45a0ed82f089158a79c8c25ef844c55e4a74fc35 (diff) |
nix::worker_proto -> worker_proto
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r-- | src/libstore/worker-protocol.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index fd6c2b2cf..2934c1d67 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -153,7 +153,7 @@ void write(const Store & store, Sink & out, const std::optional<T> & optVal) { out << (uint64_t) (optVal ? 1 : 0); if (optVal) - nix::worker_proto::write(store, out, *optVal); + worker_proto::write(store, out, *optVal); } /* Specialization which uses and empty string for the empty case, taking |