From cc1f3c28b344819844a3b7b74e35770a7f875f15 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Fri, 16 Jan 2026 11:40:47 +0100 Subject: [PATCH] [c,printf] fix wlog format string to match arguments --- client/common/cmdline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/common/cmdline.c b/client/common/cmdline.c index b8bccdc37..430c90b7d 100644 --- a/client/common/cmdline.c +++ b/client/common/cmdline.c @@ -5845,7 +5845,7 @@ static BOOL args_from_env(const char* name, int* aargc, char** aargv[], const ch goto cleanup; if (rc == 0) { - WLog_ERR(TAG, "%s - environment variable '%s' is empty", arg); + WLog_ERR(TAG, "environment variable '%s' is empty", arg); goto cleanup; } }