mirror of
https://github.com/labwc/labwc.git
synced 2026-03-02 01:40:24 -05:00
s/wl_list_insert(list.prev...)/wl_list_append(list...)/
This commit is contained in:
parent
042af48925
commit
89ad0b808f
11 changed files with 32 additions and 31 deletions
|
|
@ -6,6 +6,7 @@
|
|||
#include <strings.h>
|
||||
#include <unistd.h>
|
||||
#include <wlr/util/log.h>
|
||||
#include "common/list.h"
|
||||
#include "common/mem.h"
|
||||
#include "common/spawn.h"
|
||||
#include "debug.h"
|
||||
|
|
@ -378,5 +379,5 @@ action_arg_add_str(struct action *action, char *key, const char *value)
|
|||
arg->base.key = xstrdup(key);
|
||||
}
|
||||
arg->value = xstrdup(value);
|
||||
wl_list_insert(action->args.prev, &arg->base.link);
|
||||
wl_list_append(&action->args, &arg->base.link);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue