Fix a few places that needed adjustment for the size_t changes, including updating the range checks to use a calculated SIZE_T_MAX.

This commit is contained in:
Eric Haszlakiewicz
2016-05-23 02:10:58 +00:00
parent 9a2915ce66
commit 996be85843
8 changed files with 142 additions and 15 deletions

View File

@@ -54,7 +54,7 @@ extern void* array_list_bsearch(const void **key,
int (*sort_fn)(const void *, const void *));
extern int
array_list_del_idx(struct array_list *arr, int i, int count);
array_list_del_idx(struct array_list *arr, size_t idx, size_t count);
#ifdef __cplusplus
}