diff --git a/src/modules/bank.c b/src/modules/bank.c index dd4c38f0e158395c332c9d10f5815284abecf84f..369b62b3f10778cf037e9038f3a496a3d9bd83f6 100644 --- a/src/modules/bank.c +++ b/src/modules/bank.c @@ -73,7 +73,7 @@ static void vlc_modcap_free(void *data) static int vlc_module_cmp (const void *a, const void *b) { - const module_t *const *ma = a, *const *mb = b; + module_t *const *ma = a, *const *mb = b; /* Note that qsort() uses _ascending_ order, * so the smallest module is the one with the biggest score. */ return (*mb)->i_score - (*ma)->i_score;