From aa653aa3892b363d32b9096ff17a1083f2a60102 Mon Sep 17 00:00:00 2001 From: Ailin Nemui Date: Thu, 7 Jan 2021 10:09:29 +0100 Subject: [PATCH] correct wrong function prefixes: glog_func -> i_log_func --- src/fe-common/core/fe-common-core.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/fe-common/core/fe-common-core.c b/src/fe-common/core/fe-common-core.c index be6631b3..8f412198 100644 --- a/src/fe-common/core/fe-common-core.c +++ b/src/fe-common/core/fe-common-core.c @@ -254,8 +254,7 @@ void fe_common_core_deinit(void) signal_remove("channel destroyed", (SIGNAL_FUNC) sig_channel_destroyed); } -void glog_func(const char *log_domain, GLogLevelFlags log_level, - const char *message) +void i_log_func(const char *log_domain, GLogLevelFlags log_level, const char *message) { const char *reason; @@ -459,7 +458,7 @@ void fe_common_core_finish_init(void) signal_add_first("setup changed", (SIGNAL_FUNC) sig_setup_changed); /* _after_ windows are created.. */ - g_log_set_default_handler((GLogFunc) glog_func, NULL); + g_log_set_default_handler((GLogFunc) i_log_func, NULL); if (setup_changed) signal_emit("setup changed", 0);