From 84a05b3f4e0df86c3636707bb8f9e17c0f291160 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Mon, 29 Sep 2025 14:49:53 +0100 Subject: Fix a bad error message in dbg.c --- src/dbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbg.c b/src/dbg.c index aa21edf..b5de6ba 100644 --- a/src/dbg.c +++ b/src/dbg.c @@ -88,7 +88,7 @@ DEF_CCMD_HERE(sst_dbg_getcmdcb, "Get the address of a command callback", 0) { } struct con_cmd *thecmd = con_findcmd(argv[1]); if (!thecmd) { - errmsg_errorstd("couldn't find command %s\n", argv[1]); + errmsg_errorx("couldn't find command %s", argv[1]); return; } #ifdef _WIN32 -- cgit v1.2.3-54-g00ecf