diff options
author | nyorain <nyorain@gmail.com> | 2017-08-14 17:09:56 +0200 |
---|---|---|
committer | nyorain <nyorain@gmail.com> | 2017-08-14 17:09:56 +0200 |
commit | f998bb82995c2086e05b0949bef76506740407f4 (patch) | |
tree | 732d20c340a6cae30a49e91019608ee6e0b24e9b /include/wlr/util | |
parent | 53052b3f6e457f35d46fc3a71bd7eac96e55a484 (diff) |
Fix style issues
Diffstat (limited to 'include/wlr/util')
-rw-r--r-- | include/wlr/util/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/util/list.h b/include/wlr/util/list.h index c82fbf7a..0c175132 100644 --- a/include/wlr/util/list.h +++ b/include/wlr/util/list.h @@ -11,7 +11,7 @@ typedef struct { list_t *list_create(void); void list_free(list_t *list); -void list_foreach(list_t *list, void (*callback)(void* item)); +void list_foreach(list_t *list, void (*callback)(void *item)); void list_add(list_t *list, void *item); void list_push(list_t *list, void *item); void list_insert(list_t *list, size_t index, void *item); |