aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEnerccio <admin@en-circle.com>2017-10-11 11:20:06 +0200
committerGitHub <noreply@github.com>2017-10-11 11:20:06 +0200
commitf53616ab1cc4325eb4489a402ce8e8e624a2d1e0 (patch)
treeb0df9cf37c7d49de7cb7ea9727cc7feb8bcd6cd1 /include
parentab2f8d918b9dd8a4f5c06491fed3846ebeb5097a (diff)
Fixed wrong function name
Apparently I am first guy to ever call this...
Diffstat (limited to 'include')
-rw-r--r--include/wlr/util/log.h2
1 files changed, 1 insertions, 1 deletions
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)))