From 090772553e2b16962462e45e8871bfc076f23b15 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 13 Sep 2022 23:31:35 +0100 Subject: Fix some lingering idiocy Thanks Aciidz for pointing out the strings with no newline in them, and thanks Clang for warning me I wasn't using a function for ages while I was too lazy to delete it. --- src/alias.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/alias.c') diff --git a/src/alias.c b/src/alias.c index 765f735..b1f7ad7 100644 --- a/src/alias.c +++ b/src/alias.c @@ -52,7 +52,7 @@ void alias_rm(const char *name) { DEF_CCMD_HERE_UNREG(sst_alias_clear, "Remove all command aliases", 0) { if (cmd->argc != 1) { - con_warn("usage: sst_alias_clear"); + con_warn("usage: sst_alias_clear\n"); return; } alias_nuke(); @@ -60,11 +60,11 @@ DEF_CCMD_HERE_UNREG(sst_alias_clear, "Remove all command aliases", 0) { DEF_CCMD_HERE_UNREG(sst_alias_remove, "Remove a command alias", 0) { if (cmd->argc != 2) { - con_warn("usage: sst_alias_remove name"); + con_warn("usage: sst_alias_remove name\n"); return; } if (strlen(cmd->argv[1]) > 31) { - con_warn("invalid alias name (too long)"); + con_warn("invalid alias name (too long)\n"); return; } alias_rm(cmd->argv[1]); -- cgit v1.2.3