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 /ui.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 'ui.c')
-rw-r--r-- | ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c index 5670851..972d824 100644 --- a/ui.c +++ b/ui.c @@ -28,6 +28,7 @@ #include <wctype.h> #include "chat.h" +#undef uiFmt #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) > (b) ? (a) : (b)) |