diff options
author | June McEnroe <june@causal.agency> | 2018-08-07 14:11:19 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-07 14:11:19 -0400 |
commit | fa270d92873a7fd595e093eb3c07409e336620c0 (patch) | |
tree | ed289886434eae80a897000adcda1b0cb5d9e71f /input.c | |
parent | Handle PART and QUIT without messages (diff) | |
download | catgirl-fa270d92873a7fd595e093eb3c07409e336620c0.tar.gz catgirl-fa270d92873a7fd595e093eb3c07409e336620c0.zip |
Hack clang into checking uiFmt format strings
Diffstat (limited to '')
-rw-r--r-- | input.c | 2 |
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); } |