diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2015-04-02 21:00:09 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2015-04-02 21:00:09 +0000 |
commit | 03f96d6a1e0fc2678c70fb77304b03c8b955ae5b (patch) | |
tree | 3679ec37d982db5d0782937b41da6358d7f52108 /usr.bin/sort/radixsort.c | |
parent | 92ef4bfddd0b4402c4d13de2713e9ab49d56bfa3 (diff) |
Fixed whitespace issues.
ok millert@
Diffstat (limited to 'usr.bin/sort/radixsort.c')
-rw-r--r-- | usr.bin/sort/radixsort.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/sort/radixsort.c b/usr.bin/sort/radixsort.c index 532b5c8b8c5..318fe5bd939 100644 --- a/usr.bin/sort/radixsort.c +++ b/usr.bin/sort/radixsort.c @@ -1,4 +1,4 @@ -/* $OpenBSD: radixsort.c,v 1.4 2015/04/02 20:58:43 tobias Exp $ */ +/* $OpenBSD: radixsort.c,v 1.5 2015/04/02 21:00:08 tobias Exp $ */ /*- * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> @@ -79,7 +79,7 @@ static struct level_stack *g_ls; * 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; @@ -209,7 +209,7 @@ run_sort_level_next(struct sort_level *sl) sort_free(sl->sublevels); sl->sublevels = NULL; - switch (sl->tosort_num){ + switch (sl->tosort_num) { case 0: goto end; case 1: |