Comment # 3 on bug 920930 from
Michel, you are missing one pointer indirection.

the comparison functions does not get char *, but points into the array, so
char **

int correct_strcmp(void *a,void *b) {
        char **pa = a;
        char **pb = b;

        return strcmp (*pa,*pb);
}


You are receiving this mail because: