Update list.c

Fixing indent
This commit is contained in:
Michael Tryby
2019-04-10 11:26:36 -04:00
parent fbecf1b915
commit 7d3c16a400

View File

@@ -36,8 +36,8 @@ list_t *create_list(size_t elementSize, freeFunction freeFn)
list->logicalLength = 0; list->logicalLength = 0;
list->elementSize = elementSize; list->elementSize = elementSize;
list->head = list->tail = NULL; list->head = list->tail = NULL;
list->freeFn = freeFn; list->freeFn = freeFn;
return list; return list;
} }
void delete_list(list_t *list) void delete_list(list_t *list)