This commit is contained in:
Andrii Hermaniuk 2022-04-07 15:53:25 +02:00
parent b9ecefbae4
commit f9a55fc11f

View File

@ -70,6 +70,6 @@ int compare(const void* p1, const void* p2){
struct student* s2 = (struct student*)p2;
// s1->votes je počet hlasov
// s1->name je meno študenta
return (s2->votes)-(s1->votes);
return (s2->votes)-(s1->votes)-1;
}