aboutsummaryrefslogtreecommitdiff
path: root/sway/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'sway/list.h')
-rw-r--r--sway/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/list.h b/sway/list.h
index e035ec4c..29b988aa 100644
--- a/sway/list.h
+++ b/sway/list.h
@@ -7,7 +7,7 @@ typedef struct {
void **items;
} list_t;
-list_t *create_list();
+list_t *create_list(void);
void list_free(list_t *list);
void list_add(list_t *list, void *item);
void list_insert(list_t *list, int index, void *item);