From 7794b1b3cb5cbe6ab966e97ea27013e59f543272 Mon Sep 17 00:00:00 2001 From: Johan Euphrosine Date: Wed, 12 Jul 2023 05:42:55 +0900 Subject: [PATCH] textio: add missing TxErrorV call --- textio/txOutput.c | 1 + 1 file changed, 1 insertion(+) diff --git a/textio/txOutput.c b/textio/txOutput.c index 085bcf15..7d6bda23 100644 --- a/textio/txOutput.c +++ b/textio/txOutput.c @@ -305,6 +305,7 @@ void TxError(char *fmt, ...) { va_list args; va_start(args, fmt); + TxErrorV(fmt, args); va_end(args); }