From 4c8749822249f9cb5a80c662789732bcf7463893 Mon Sep 17 00:00:00 2001 From: Taiyu Date: Tue, 11 Aug 2015 11:12:50 -0700 Subject: style --- sway/list.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sway/list.c') diff --git a/sway/list.c b/sway/list.c index f01efc92..1be1e17c 100644 --- 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); -- cgit v1.2.3-54-g00ecf