summaryrefslogtreecommitdiffstats
path: root/usr.bin/sort
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2014-04-30 20:39:08 +0000
committerpfg <pfg@FreeBSD.org>2014-04-30 20:39:08 +0000
commit2372623c9c03f071c3c235fceb736421d940c993 (patch)
tree33c4fc724ead781b44a9d065302cf36bcd8395a1 /usr.bin/sort
parente6ff96679cf00be340be4fc5e7ccde495f96938d (diff)
downloadFreeBSD-src-2372623c9c03f071c3c235fceb736421d940c993.zip
FreeBSD-src-2372623c9c03f071c3c235fceb736421d940c993.tar.gz
MFC r264581, r264744:
Various style(9) fixes and typos in printf, grep, sort and patch. #define should be followed by a tab.
Diffstat (limited to 'usr.bin/sort')
-rw-r--r--usr.bin/sort/bwstring.h8
-rw-r--r--usr.bin/sort/coll.h2
-rw-r--r--usr.bin/sort/file.h6
-rw-r--r--usr.bin/sort/mem.h2
-rw-r--r--usr.bin/sort/radixsort.h2
-rw-r--r--usr.bin/sort/sort.1.in4
-rw-r--r--usr.bin/sort/sort.h4
-rw-r--r--usr.bin/sort/vsort.h2
8 files changed, 15 insertions, 15 deletions
diff --git a/usr.bin/sort/bwstring.h b/usr.bin/sort/bwstring.h
index 93098f3..7402ec6 100644
--- a/usr.bin/sort/bwstring.h
+++ b/usr.bin/sort/bwstring.h
@@ -28,7 +28,7 @@
*/
#if !defined(__BWSTRING_H__)
-#define __BWSTRING_H__
+#define __BWSTRING_H__
#include <stdbool.h>
#include <stdio.h>
@@ -41,7 +41,7 @@
extern bool byte_sort;
/* wchar_t is of 4 bytes: */
-#define SIZEOF_WCHAR_STRING(LEN) ((LEN)*sizeof(wchar_t))
+#define SIZEOF_WCHAR_STRING(LEN) ((LEN)*sizeof(wchar_t))
/*
* Binary "wide" string
@@ -64,7 +64,7 @@ struct reader_buffer
typedef void *bwstring_iterator;
-#define BWSLEN(s) ((s)->len)
+#define BWSLEN(s) ((s)->len)
struct bwstring *bwsalloc(size_t sz);
@@ -135,7 +135,7 @@ bws_get_iter_value(bwstring_iterator iter)
int
bws_iterator_cmp(bwstring_iterator iter1, bwstring_iterator iter2, size_t len);
-#define BWS_GET(bws, pos) ((MB_CUR_MAX == 1) ? ((bws)->data.cstr[(pos)]) : (bws)->data.wstr[(pos)])
+#define BWS_GET(bws, pos) ((MB_CUR_MAX == 1) ? ((bws)->data.cstr[(pos)]) : (bws)->data.wstr[(pos)])
void initialise_months(void);
diff --git a/usr.bin/sort/coll.h b/usr.bin/sort/coll.h
index 9299742..9a70b8e 100644
--- a/usr.bin/sort/coll.h
+++ b/usr.bin/sort/coll.h
@@ -28,7 +28,7 @@
*/
#if !defined(__COLL_H__)
-#define __COLL_H__
+#define __COLL_H__
#include "bwstring.h"
#include "sort.h"
diff --git a/usr.bin/sort/file.h b/usr.bin/sort/file.h
index ae33a2a..7037d87 100644
--- a/usr.bin/sort/file.h
+++ b/usr.bin/sort/file.h
@@ -28,7 +28,7 @@
*/
#if !defined(__SORT_FILE_H__)
-#define __SORT_FILE_H__
+#define __SORT_FILE_H__
#include "coll.h"
#include "sort.h"
@@ -39,8 +39,8 @@
#define SORT_HEAPSORT 3
#define SORT_RADIXSORT 4
-#define DEFAULT_SORT_ALGORITHM SORT_HEAPSORT
-#define DEFAULT_SORT_FUNC heapsort
+#define DEFAULT_SORT_ALGORITHM SORT_HEAPSORT
+#define DEFAULT_SORT_FUNC heapsort
/*
* List of data to be sorted.
diff --git a/usr.bin/sort/mem.h b/usr.bin/sort/mem.h
index 44eb544..36671e3 100644
--- a/usr.bin/sort/mem.h
+++ b/usr.bin/sort/mem.h
@@ -28,7 +28,7 @@
*/
#if !defined(__SORT_MEM_H__)
-#define __SORT_MEM_H__
+#define __SORT_MEM_H__
#include <errno.h>
#include <stdbool.h>
diff --git a/usr.bin/sort/radixsort.h b/usr.bin/sort/radixsort.h
index ff881a3..8743728 100644
--- a/usr.bin/sort/radixsort.h
+++ b/usr.bin/sort/radixsort.h
@@ -28,7 +28,7 @@
*/
#if !defined(__SORT_RADIX_H__)
-#define __SORT_RADIX_H__
+#define __SORT_RADIX_H__
#include "coll.h"
#include "sort.h"
diff --git a/usr.bin/sort/sort.1.in b/usr.bin/sort/sort.1.in
index 887621f..b23eb18 100644
--- a/usr.bin/sort/sort.1.in
+++ b/usr.bin/sort/sort.1.in
@@ -194,7 +194,7 @@ This is a random permutation of the inputs except that
the equal keys sort together.
It is implemented by hashing the input keys and sorting
the hash values.
-The hash function is choosen randomly.
+The hash function is chosen randomly.
The hash function is randomized by
.Cm /dev/random
content, or by file content if it is specified by
@@ -212,7 +212,7 @@ The files are compared by their prefixes and versions (leading
zeros are ignored in version numbers, see example below).
If an input string does not match the pattern, then it is compared
using the byte compare function.
-All string comparisions are performed in C locale, the locale
+All string comparisons are performed in C locale, the locale
environment setting is ignored.
.Bl -tag -width indent
.It Example:
diff --git a/usr.bin/sort/sort.h b/usr.bin/sort/sort.h
index e339ff7..41dd60e 100644
--- a/usr.bin/sort/sort.h
+++ b/usr.bin/sort/sort.h
@@ -28,7 +28,7 @@
*/
#if !defined(__BSD_SORT_H__)
-#define __BSD_SORT_H__
+#define __BSD_SORT_H__
#include <errno.h>
#include <stdbool.h>
@@ -53,7 +53,7 @@ extern nl_catd catalog;
extern const char *nlsstr[];
#if defined(SORT_THREADS)
-#define MT_SORT_THRESHOLD (10000)
+#define MT_SORT_THRESHOLD (10000)
extern unsigned int ncpu;
extern size_t nthreads;
#endif
diff --git a/usr.bin/sort/vsort.h b/usr.bin/sort/vsort.h
index 17f58e5..5f9db74 100644
--- a/usr.bin/sort/vsort.h
+++ b/usr.bin/sort/vsort.h
@@ -28,7 +28,7 @@
*/
#ifndef _VSORT_H_
-#define _VSORT_H_
+#define _VSORT_H_
#include "bwstring.h"
OpenPOWER on IntegriCloud