about summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-07 14:11:19 -0400
committerJune McEnroe <june@causal.agency>2018-08-07 14:11:19 -0400
commitfa270d92873a7fd595e093eb3c07409e336620c0 (patch)
treeed289886434eae80a897000adcda1b0cb5d9e71f /input.c
parentHandle PART and QUIT without messages (diff)
downloadcatgirl-fa270d92873a7fd595e093eb3c07409e336620c0.tar.gz
catgirl-fa270d92873a7fd595e093eb3c07409e336620c0.zip
Hack clang into checking uiFmt format strings
Diffstat (limited to 'input.c')
-rw-r--r--input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c
index a53b0a2..0b653eb 100644
--- a/input.c
+++ b/input.c
@@ -98,5 +98,5 @@ void input(wchar_t *input) {
 		COMMANDS[i].handler(input);
 		return;
 	}
-	uiFmt(L"/%ls isn't a recognized command", command);
+	uiFmt("/%ls isn't a recognized command", command);
 }