The following changes since commit a64b7d6e9b3e5174e034f7c147de71e4b51b2a01: Merge branch 'fix-get-next-file' of https://github.com/aclamk/fio (2020-12-29 16:36:32 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 4065c6a4949fa85e5f2d8de8a5556130231dd680: log: only compile log_prevalist() if FIO_INC_DEBUG is set (2021-01-05 13:14:28 -0700) ---------------------------------------------------------------- Jens Axboe (1): log: only compile log_prevalist() if FIO_INC_DEBUG is set log.c | 2 ++ 1 file changed, 2 insertions(+) --- Diff of recent changes: diff --git a/log.c b/log.c index 6c36813d..562a29aa 100644 --- a/log.c +++ b/log.c @@ -42,6 +42,7 @@ size_t log_valist(const char *fmt, va_list args) } /* add prefix for the specified type in front of the valist */ +#ifdef FIO_INC_DEBUG void log_prevalist(int type, const char *fmt, va_list args) { char *buf1, *buf2; @@ -64,6 +65,7 @@ void log_prevalist(int type, const char *fmt, va_list args) len = log_info_buf(buf2, len); free(buf2); } +#endif ssize_t log_info(const char *format, ...) {