mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
[style] fix open brace after function definition
This commit is contained in:
parent
953e8a4f9d
commit
9c4bacc9b7
1 changed files with 2 additions and 1 deletions
|
|
@ -79,7 +79,8 @@ action_create(const char *action_name)
|
||||||
return action;
|
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;
|
struct action *action, *action_tmp;
|
||||||
wl_list_for_each_safe(action, action_tmp, action_list, link) {
|
wl_list_for_each_safe(action, action_tmp, action_list, link) {
|
||||||
wl_list_remove(&action->link);
|
wl_list_remove(&action->link);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue