diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-23 00:47:16 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-07-05 22:28:16 +0000 |
commit | 06220a71c1430c97bfcd8012b00530a987e40e97 (patch) | |
tree | 69f230d669db2804379a33fc1ec6e3d3fc908c67 /src/libutil/source-path.hh | |
parent | b51ea465de48e4c5516ba0182cc642b4e644be10 (diff) |
libstore: convert dumpPath to a generator
Change-Id: Ic4cf5562504aa29130304469936f958c0426e5ef
Diffstat (limited to 'src/libutil/source-path.hh')
-rw-r--r-- | src/libutil/source-path.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/source-path.hh b/src/libutil/source-path.hh index 311e9f7a6..fe5b9b777 100644 --- a/src/libutil/source-path.hh +++ b/src/libutil/source-path.hh @@ -101,7 +101,7 @@ struct SourcePath void dumpPath( Sink & sink, PathFilter & filter = defaultPathFilter) const - { return nix::dumpPath(path.abs(), sink, filter); } + { sink << nix::dumpPath(path.abs(), filter); } /** * Return the location of this path in the "real" filesystem, if |