From: Johan Malm Date: Thu, 10 Sep 2020 21:26:10 +0000 (+0100) Subject: log: simplify info message X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=5181a0ac529905d87c826f09cc57bc38b1c2f16a;p=proto%2Flabwc.git log: simplify info message --- diff --git a/src/common/log.c b/src/common/log.c index 4557d934..e3385b1f 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -11,7 +11,7 @@ void info(const char *msg, ...) { va_list params; fprintf(stderr, LABWC_COLOR_YELLOW); - fprintf(stderr, "[labwc] info: "); + fprintf(stderr, "[labwc] "); va_start(params, msg); vfprintf(stderr, msg, params); va_end(params);