aboutsummaryrefslogtreecommitdiff
path: root/src/list.h
diff options
context:
space:
mode:
authorTorstein Husebø <torstein@huseboe.net>2020-08-27 19:41:05 +0200
committerHarry Jeffery <harry@exec64.co.uk>2020-08-31 13:56:50 +0100
commit90cc7adbd2fbe4f9f3bc2682c92024baf85a6abb (patch)
tree9c8920b9d8c86489af1ce834772fad606dd74917 /src/list.h
parente18b7bca0b5f26827c75f216fe32bd0eaf893dcf (diff)
downloadimv-90cc7adbd2fbe4f9f3bc2682c92024baf85a6abb.tar.gz
treewide: fix typos
Diffstat (limited to 'src/list.h')
-rw-r--r--src/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/list.h b/src/list.h
index d62f41a..9888bc9 100644
--- a/src/list.h
+++ b/src/list.h
@@ -23,7 +23,7 @@ void list_deep_free(struct list *list);
/* Append an item to the list. Automatically resizes the list if needed */
void list_append(struct list *list, void *item);
-/* Grow the list's storage to a given size, useful for avoiding unneccessary
+/* Grow the list's storage to a given size, useful for avoiding unnecessary
* reallocations prior to inserting many items
*/
void list_grow(struct list *list, size_t min_size);