diff options
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; |