diff options
Diffstat (limited to 'sway/list.h')
-rw-r--r-- | sway/list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/list.h b/sway/list.h index 93649fd5..e035ec4c 100644 --- a/sway/list.h +++ b/sway/list.h @@ -2,9 +2,9 @@ #define _SWAY_LIST_H typedef struct { - int capacity; - int length; - void **items; + int capacity; + int length; + void **items; } list_t; list_t *create_list(); |