File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ struct choice {
7070 double score ;
7171};
7272
73- static int choicecmp (const void * , const void * );
73+ static int choice_cmp (const void * , const void * );
7474static const char * choice_description (const struct choice * );
7575static const char * choice_string (const struct choice * );
7676static void delete_between (char * , size_t , size_t , size_t );
@@ -603,13 +603,13 @@ filter_choices(size_t nchoices)
603603 return 0 ;
604604 }
605605 }
606- qsort (choices .v , nchoices , sizeof (struct choice ), choicecmp );
606+ qsort (choices .v , nchoices , sizeof (struct choice ), choice_cmp );
607607
608608 return 1 ;
609609}
610610
611611int
612- choicecmp (const void * p1 , const void * p2 )
612+ choice_cmp (const void * p1 , const void * p2 )
613613{
614614 const struct choice * c1 , * c2 ;
615615
You can’t perform that action at this time.
0 commit comments