From 4c8749822249f9cb5a80c662789732bcf7463893 Mon Sep 17 00:00:00 2001
From: Taiyu <taiyu.len@gmail.com>
Date: Tue, 11 Aug 2015 11:12:50 -0700
Subject: [PATCH] style

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

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