This commit is contained in:
Taiyu 2015-08-11 11:12:50 -07:00
parent 0490988673
commit 4c87498222
1 changed files with 1 additions and 2 deletions

View File

@ -11,8 +11,7 @@ list_t *create_list(void) {
return list;
}
static
void list_resize(list_t *list) {
static void list_resize(list_t *list) {
if (list->length == list->capacity) {
list->capacity += 10;
list->items = realloc(list->items, sizeof(void*) * list->capacity);