diff options
author | Taiyu <[email protected]> | 2015-08-10 17:32:50 -0700 |
---|---|---|
committer | Taiyu <[email protected]> | 2015-08-10 17:32:50 -0700 |
commit | beabb12d63437557da8a2e254a1e0250da448aa6 (patch) | |
tree | f3a0817c74125550a8442aae6cdf2e81e793d3e9 /sway/list.c | |
parent | 4aeaaa8abc35ff6ce9746802169918d33e7b8e61 (diff) |
destroys empty workspace + minor bugfixes
Diffstat (limited to 'sway/list.c')
-rw-r--r-- | sway/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/list.c b/sway/list.c index 52943efe..68455f89 100644 --- a/sway/list.c +++ b/sway/list.c @@ -3,7 +3,7 @@ #include <stdlib.h> #include <string.h> -list_t *create_list() { +list_t *create_list(void) { list_t *list = malloc(sizeof(list_t)); list->capacity = 10; list->length = 0; |