aboutsummaryrefslogtreecommitdiff
path: root/util/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/list.c')
-rw-r--r--util/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/list.c b/util/list.c
index 94159036..e03c7498 100644
--- a/util/list.c
+++ b/util/list.c
@@ -74,7 +74,7 @@ void list_cat(list_t *list, list_t *source) {
}
}
-void list_qsort(list_t* list, int compare(const void *left, const void *right)) {
+void list_qsort(list_t *list, int compare(const void *left, const void *right)) {
qsort(list->items, list->length, sizeof(void *), compare);
}