diff options
Diffstat (limited to 'runtime/io.c')
-rw-r--r-- | runtime/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/io.c b/runtime/io.c index 1e3d51e4..0e29b2f1 100644 --- a/runtime/io.c +++ b/runtime/io.c @@ -24,8 +24,8 @@ void _stp_string_cat_cstr (String str1, const char *str2); /** private buffer for _stp_log() */ #define STP_LOG_BUF_LEN 2047 -#define WARN_STRING "\033[33mWARNING: \033[0m" -#define ERR_STRING "\033[31mERROR: \033[0m" +#define WARN_STRING "WARNING: " +#define ERR_STRING "ERROR: " static char _stp_lbuf[NR_CPUS][STP_LOG_BUF_LEN + 1]; |