summaryrefslogtreecommitdiffstats
path: root/usr.bin/sort/radixsort.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/sort/radixsort.c')
-rw-r--r--usr.bin/sort/radixsort.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/sort/radixsort.c b/usr.bin/sort/radixsort.c
index f6cf6ac..3466987 100644
--- a/usr.bin/sort/radixsort.c
+++ b/usr.bin/sort/radixsort.c
@@ -129,7 +129,7 @@ have_sort_left(void)
* Push sort level to the stack
*/
static inline void
-push_ls(struct sort_level* sl)
+push_ls(struct sort_level *sl)
{
struct level_stack *new_ls;
@@ -231,7 +231,6 @@ add_to_sublevel(struct sort_level *sl, struct sort_list_item *item, size_t indx)
static inline void
add_leaf(struct sort_level *sl, struct sort_list_item *item)
{
-
if (++(sl->leaves_num) > sl->leaves_sz) {
sl->leaves_sz = sl->leaves_num + 128;
sl->leaves = sort_realloc(sl->leaves,
OpenPOWER on IntegriCloud