[style] fix open brace after function definition

This commit is contained in:
Consolatis 2022-02-24 02:33:17 +01:00 committed by Johan Malm
parent 953e8a4f9d
commit 9c4bacc9b7

View file

@ -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);