sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 4c8749822249f9cb5a80c662789732bcf7463893
parent 04909886737f715615eb02f9963c66d1c9586ae6
Author: Taiyu <taiyu.len@gmail.com>
Date:   Tue, 11 Aug 2015 11:12:50 -0700

style

Diffstat:
Msway/list.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sway/list.c b/sway/list.c @@ -11,8 +11,7 @@ list_t *create_list(void) { return list; } -static -void list_resize(list_t *list) { +static void list_resize(list_t *list) { if (list->length == list->capacity) { list->capacity += 10; list->items = realloc(list->items, sizeof(void*) * list->capacity);