* lib/commonio.c: Avoid multi-statements lines.
This commit is contained in:
parent
11a564b6bd
commit
6b74294844
@ -1,3 +1,7 @@
|
|||||||
|
2010-08-20 Nicolas François <nicolas.francois@centraliens.net>
|
||||||
|
|
||||||
|
* lib/commonio.c: Avoid multi-statements lines.
|
||||||
|
|
||||||
2010-08-20 Nicolas François <nicolas.francois@centraliens.net>
|
2010-08-20 Nicolas François <nicolas.francois@centraliens.net>
|
||||||
|
|
||||||
* man/po/fr.po: Fix a typo.
|
* man/po/fr.po: Fix a typo.
|
||||||
|
@ -742,7 +742,8 @@ commonio_sort (struct commonio_db *db, int (*cmp) (const void *, const void *))
|
|||||||
NULL != ptr;
|
NULL != ptr;
|
||||||
#endif
|
#endif
|
||||||
ptr = ptr->next) {
|
ptr = ptr->next) {
|
||||||
entries[n++] = ptr;
|
entries[n] = ptr;
|
||||||
|
n++;
|
||||||
}
|
}
|
||||||
qsort (entries, n, sizeof (struct commonio_entry *), cmp);
|
qsort (entries, n, sizeof (struct commonio_entry *), cmp);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user