From 354713d2f746c197eed6a1feb4c6af3420af6c15 Mon Sep 17 00:00:00 2001 From: Timo Teräs Date: Mon, 5 Oct 2020 18:52:51 +0300 Subject: rename apk_db_options to apk_ctx, rework logging makes apk_verbosity non-global fixes #10682 --- src/apk_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/apk_io.h') diff --git a/src/apk_io.h b/src/apk_io.h index 2e70b53..adec003 100644 --- a/src/apk_io.h +++ b/src/apk_io.h @@ -147,7 +147,7 @@ struct apk_ostream *apk_ostream_to_fd(int fd); struct apk_ostream *apk_ostream_to_file(int atfd, const char *file, mode_t mode); struct apk_ostream *apk_ostream_to_file_gz(int atfd, const char *file, const char *tmpfile, mode_t mode); size_t apk_ostream_write_string(struct apk_ostream *ostream, const char *string); -static inline void apk_ostream_cancel(struct apk_ostream *os, int rc) { if (!os->rc) os->rc = rc; } +static inline int apk_ostream_cancel(struct apk_ostream *os, int rc) { if (!os->rc) os->rc = rc; return rc; } static inline ssize_t apk_ostream_write(struct apk_ostream *os, const void *buf, size_t size) { return os->ops->write(os, buf, size); -- cgit v1.2.3-70-g09d2