Fix style issues

This commit is contained in:
nyorain 2017-08-14 17:09:56 +02:00
parent 53052b3f6e
commit f998bb8299
14 changed files with 36 additions and 18 deletions

View file

@ -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);
}