aboutsummaryrefslogtreecommitdiff
path: root/lib/io/src/xfrm/ostream.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-11 23:27:16 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-15 13:38:25 +0200
commit63bc750fecb00fc5878ca889204fc65510893778 (patch)
treef3a8280ce30308e6bd86e534df19599587ce5914 /lib/io/src/xfrm/ostream.c
parentd8a01253aba94759aae2bbc78e9103843f28dd78 (diff)
libio: remove single line wrapper functions
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/io/src/xfrm/ostream.c')
-rw-r--r--lib/io/src/xfrm/ostream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/io/src/xfrm/ostream.c b/lib/io/src/xfrm/ostream.c
index bd94515..79ed49a 100644
--- a/lib/io/src/xfrm/ostream.c
+++ b/lib/io/src/xfrm/ostream.c
@@ -42,7 +42,7 @@ static int flush_inbuf(ostream_xfrm_t *xfrm, bool finish)
return -1;
}
- if (ostream_append(xfrm->wrapped, xfrm->outbuf, off_out))
+ if (xfrm->wrapped->append(xfrm->wrapped, xfrm->outbuf, off_out))
return -1;
off_out = 0;
@@ -52,7 +52,7 @@ static int flush_inbuf(ostream_xfrm_t *xfrm, bool finish)
}
if (off_out > 0) {
- if (ostream_append(xfrm->wrapped, xfrm->outbuf, off_out))
+ if (xfrm->wrapped->append(xfrm->wrapped, xfrm->outbuf, off_out))
return -1;
}