diff options
author | Curtis McEnroe | 2018-08-07 15:43:49 -0400 |
---|---|---|
committer | Curtis McEnroe | 2018-08-07 15:46:04 -0400 |
commit | fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3 (patch) | |
tree | 6d47583bd0234fb1107781a641ce666bb2fc9b61 /chat.c | |
parent | 5d2b5cd51e64c3e49a536ef431c97dc1d0b78dfd (diff) |
Convert input to multibyte before handling
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 2 |
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); } |