diff options
Diffstat (limited to 'src/libstore/uds-remote-store.hh')
-rw-r--r-- | src/libstore/uds-remote-store.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/uds-remote-store.hh b/src/libstore/uds-remote-store.hh index cdb28a001..ff7e9ae3f 100644 --- a/src/libstore/uds-remote-store.hh +++ b/src/libstore/uds-remote-store.hh @@ -38,8 +38,8 @@ public: ref<FSAccessor> getFSAccessor() override { return LocalFSStore::getFSAccessor(); } - void narFromPath(const StorePath & path, Sink & sink) override - { LocalFSStore::narFromPath(path, sink); } + WireFormatGenerator narFromPath(const StorePath & path) override + { return LocalFSStore::narFromPath(path); } /** * Implementation of `IndirectRootStore::addIndirectRoot()` which |