summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-07 22:19:00 -0400
committerJune McEnroe <june@causal.agency>2018-08-07 22:19:00 -0400
commit41e7105fecdb3516a1711003ba3fccdf9d3cfd3d (patch)
tree0f72ced695ff05cd46674fb025fad9b624b85c66 /input.c
parentHighlight and beep pings (diff)
downloadcatgirl-41e7105fecdb3516a1711003ba3fccdf9d3cfd3d.tar.gz
catgirl-41e7105fecdb3516a1711003ba3fccdf9d3cfd3d.zip
Remove extraneous slash from unrecognized command
Diffstat (limited to '')
-rw-r--r--input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c
index e8918c9..e4c4672 100644
--- a/input.c
+++ b/input.c
@@ -97,5 +97,5 @@ void input(char *input) {
 		COMMANDS[i].handler(input);
 		return;
 	}
-	uiFmt("/%s isn't a recognized command", command);
+	uiFmt("%s isn't a recognized command", command);
 }