From 8af4ee6f415fe316894e4423235dfc4ee70d8cbb Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sun, 4 Jun 2023 15:40:29 +0200 Subject: libio: move splice function from ostream to istream It touches internals of the istream, particularly the buffer, but not of the ostream. It really belongs to istream_t. Signed-off-by: David Oberhollenzer --- bin/tar2sqfs/src/process_tarball.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/tar2sqfs/src') diff --git a/bin/tar2sqfs/src/process_tarball.c b/bin/tar2sqfs/src/process_tarball.c index ef49d20..76c7dc1 100644 --- a/bin/tar2sqfs/src/process_tarball.c +++ b/bin/tar2sqfs/src/process_tarball.c @@ -28,7 +28,7 @@ static int write_file(sqfs_writer_t *sqfs, dir_iterator_t *it, } do { - ret = ostream_append_from_istream(out, in, cfg.block_size); + ret = istream_splice(in, out, cfg.block_size); } while (ret > 0); ostream_flush(out); -- cgit v1.2.3