Change 'name' argument of find_fixed_array_item() to const char *

This commit is contained in:
Kevin Easton
2016-10-15 00:17:31 +11:00
parent a7f2462395
commit dec7caafd0
3 changed files with 3 additions and 3 deletions

View File

@@ -111,6 +111,6 @@ Array_item *BX_remove_all_from_array (Array *, char *);
Array_item *BX_array_lookup (Array *, char *, int wild, int delete);
Array_item *BX_find_array_item (Array *, char *, int *cnt, int *loc);
void *BX_find_fixed_array_item (void *Array, size_t size, int siz, char *, int *cnt, int *loc);
void *BX_find_fixed_array_item (void *Array, size_t size, int siz, const char *, int *cnt, int *loc);
#endif