From f53616ab1cc4325eb4489a402ce8e8e624a2d1e0 Mon Sep 17 00:00:00 2001 From: Enerccio Date: Wed, 11 Oct 2017 11:20:06 +0200 Subject: [PATCH] Fixed wrong function name Apparently I am first guy to ever call this... --- include/wlr/util/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wlr/util/log.h b/include/wlr/util/log.h index 3de2cacf..b017cc96 100644 --- a/include/wlr/util/log.h +++ b/include/wlr/util/log.h @@ -16,7 +16,7 @@ typedef enum { typedef void (*log_callback_t)(log_importance_t importance, const char *fmt, va_list args); -void wlr_init_log(log_callback_t callback); +void wlr_log_init(log_callback_t callback); #ifdef __GNUC__ #define ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end)))