From 9c4bacc9b7f781e23b56b05cde59bf26c91bd026 Mon Sep 17 00:00:00 2001 From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Thu, 24 Feb 2022 02:33:17 +0100 Subject: [PATCH] [style] fix open brace after function definition --- src/action.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/action.c b/src/action.c index a4376650..e196a351 100644 --- a/src/action.c +++ b/src/action.c @@ -79,7 +79,8 @@ action_create(const char *action_name) return action; } -void action_list_free(struct wl_list *action_list) { +void action_list_free(struct wl_list *action_list) +{ struct action *action, *action_tmp; wl_list_for_each_safe(action, action_tmp, action_list, link) { wl_list_remove(&action->link);