summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@cvs.openbsd.org>2015-04-02 21:00:09 +0000
committerTobias Stoeckmann <tobias@cvs.openbsd.org>2015-04-02 21:00:09 +0000
commit03f96d6a1e0fc2678c70fb77304b03c8b955ae5b (patch)
tree3679ec37d982db5d0782937b41da6358d7f52108
parent92ef4bfddd0b4402c4d13de2713e9ab49d56bfa3 (diff)
Fixed whitespace issues.
ok millert@
-rw-r--r--usr.bin/sort/radixsort.c6
-rw-r--r--usr.bin/sort/sort.c4
2 files changed, 5 insertions, 5 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:
diff --git a/usr.bin/sort/sort.c b/usr.bin/sort/sort.c
index 90c8457ea62..01b8e114ba1 100644
--- a/usr.bin/sort/sort.c
+++ b/usr.bin/sort/sort.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sort.c,v 1.71 2015/04/02 20:57:34 tobias Exp $ */
+/* $OpenBSD: sort.c,v 1.72 2015/04/02 21:00:08 tobias Exp $ */
/*-
* Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org>
@@ -428,7 +428,7 @@ check_mutually_exclusive_flags(char c, bool *mef_flags)
int i, fo_index, mec;
bool found_others, found_this;
- found_others = found_this =false;
+ found_others = found_this = false;
fo_index = 0;
for (i = 0; i < NUMBER_OF_MUTUALLY_EXCLUSIVE_FLAGS; i++) {