aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-09-29 14:49:53 +0100
committerGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-09-29 14:49:53 +0100
commit84a05b3f4e0df86c3636707bb8f9e17c0f291160 (patch)
treec7c3675cc17310311649e04d6e50cf0de7837629
parent9d8cd0869d32189480324ae93003407d134e53d6 (diff)
downloadsst-84a05b3f4e0df86c3636707bb8f9e17c0f291160.tar.gz
sst-84a05b3f4e0df86c3636707bb8f9e17c0f291160.zip
Fix a bad error message in dbg.c
-rw-r--r--src/dbg.c2
1 files changed, 1 insertions, 1 deletions
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