about summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-07 15:43:49 -0400
committerJune McEnroe <june@causal.agency>2018-08-07 15:46:04 -0400
commitfe21b1410f3a2a0ee756a4b30dbd9ba91434cca3 (patch)
tree6d47583bd0234fb1107781a641ce666bb2fc9b61 /chat.c
parentPopulate tab-complete list (diff)
downloadcatgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.tar.gz
catgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.zip
Convert input to multibyte before handling
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c
index ba83907..697e39a 100644
--- a/chat.c
+++ b/chat.c
@@ -30,7 +30,7 @@
 
 static void sigint(int sig) {
 	(void)sig;
-	input(L"/quit");
+	input("/quit");
 	uiHide();
 	exit(EX_OK);
 }