From 9295240047cac1b7493a4ca8d1155c177e6dd710 Mon Sep 17 00:00:00 2001 From: Darryl Miles Date: Mon, 30 Sep 2024 03:48:52 +0100 Subject: [PATCH] textio/txCommands.c: Wrong type of arguments to formatting function Fix code scanning alert no. 114: Wrong type of arguments to formatting function (#21) Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- textio/txCommands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textio/txCommands.c b/textio/txCommands.c index 554cae2c..04f0eaea 100644 --- a/textio/txCommands.c +++ b/textio/txCommands.c @@ -639,7 +639,7 @@ TxLogStart(fileName, mw) { if (txLogFile != NULL) { - TxError("There is already a log file (%s) open!\n", txLogFile); + TxError("There is already a log file open!\n"); return; }