Changes in uspace/lib/clui/tinput.c [f2460a50:68b5dd11] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/clui/tinput.c
rf2460a50 r68b5dd11 27 27 */ 28 28 29 #include <sort.h> 29 30 #include <stdio.h> 30 31 #include <stdlib.h> … … 582 583 583 584 /** Compare two entries in array of completions. */ 584 static int compl_cmp( const void *va, const void *vb)585 static int compl_cmp(void *va, void *vb, void *arg) 585 586 { 586 587 const char *a = *(const char **) va; … … 740 741 /* No common prefix. Sort and display all entries. */ 741 742 742 qsort(compl, cnum, sizeof(char *), compl_cmp );743 qsort(compl, cnum, sizeof(char *), compl_cmp, NULL); 743 744 744 745 tinput_jump_after(ti);
Note:
See TracChangeset
for help on using the changeset viewer.