diff options
Diffstat (limited to 'common/list.h')
-rw-r--r-- | common/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/list.h b/common/list.h index cdc545a0..146aab11 100644 --- a/common/list.h +++ b/common/list.h @@ -40,7 +40,7 @@ list_delete(struct list* self); void APP_CC list_add_item(struct list* self, tintptr item); tintptr APP_CC -list_get_item(struct list* self, int index); +list_get_item(const struct list *self, int index); void APP_CC list_clear(struct list* self); int APP_CC |