From b0d99f5c6702d2d5fcf0d8aec2c81a6ecc2a677c Mon Sep 17 00:00:00 2001 From: emersion Date: Sat, 21 Apr 2018 11:42:18 +0100 Subject: Remove wlr_ prefix from local symbols --- util/log.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'util') diff --git a/util/log.c b/util/log.c index 2adcae2d..328532f7 100644 --- a/util/log.c +++ b/util/log.c @@ -18,7 +18,8 @@ static const char *verbosity_colors[] = { [L_DEBUG ] = "\x1B[1;30m", }; -void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args) { +static void log_stderr(log_importance_t verbosity, const char *fmt, + va_list args) { if (verbosity > log_importance) { return; } @@ -46,7 +47,7 @@ void wlr_log_stderr(log_importance_t verbosity, const char *fmt, va_list args) { fprintf(stderr, "\n"); } -static log_callback_t log_callback = wlr_log_stderr; +static log_callback_t log_callback = log_stderr; void wlr_log_init(log_importance_t verbosity, log_callback_t callback) { if (verbosity < L_LAST) { -- cgit v1.2.3