textio: add missing TxErrorV call

This commit is contained in:
Johan Euphrosine 2023-07-12 05:42:55 +09:00
parent 1bdf173391
commit 7794b1b3cb
1 changed files with 1 additions and 0 deletions

View File

@ -305,6 +305,7 @@ void
TxError(char *fmt, ...) {
va_list args;
va_start(args, fmt);
TxErrorV(fmt, args);
va_end(args);
}