From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Thu, 24 Feb 2022 01:34:21 +0000 (+0100) Subject: [style] use __func__ in log message X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=00ff00d9f93534efad63bccffda34f9ce14bf72f;p=proto%2Flabwc.git [style] use __func__ in log message --- diff --git a/src/menu/menu.c b/src/menu/menu.c index 1b7f9459..ff9a8b6a 100644 --- a/src/menu/menu.c +++ b/src/menu/menu.c @@ -519,7 +519,7 @@ void menu_process_cursor_motion(struct menu *menu, struct wlr_scene_node *node) { if (!node) { - wlr_log(WLR_ERROR, "menu_process_cursor_motion() node == NULL"); + wlr_log(WLR_ERROR, "%s() node == NULL", __func__); return; } assert(menu);