From 36eb64cef482fb77d4f6520911502db8759f6709 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sun, 24 Dec 2017 11:04:13 +0100 Subject: [PATCH] fix: making it strings --- client/util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/util.h b/client/util.h index d0cd90300..17fbd7bcb 100644 --- a/client/util.h +++ b/client/util.h @@ -139,9 +139,9 @@ #endif #if defined(__linux__) || (__APPLE__) -# define BLUE_MSG(s) \e[34m(s)\e[0m +# define BLUE_MSG(s) "\e[34m(s)\e[0m" #else -# define BLUE_MSG(s) (s) +# define BLUE_MSG(s) "(s)" #endif extern int ukbhit(void);