summaryrefslogtreecommitdiff
path: root/usr.bin/uniq
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2018-07-31 02:55:58 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2018-07-31 02:55:58 +0000
commitdf3d1227457e48bb1f9a4b9affccdf0267947ede (patch)
treef33ece03b72c493fdc3ef95dfefca45ef9af1cfe /usr.bin/uniq
parentd23f31d4ddcdfffccc19f583c2a5aa3969a0e39c (diff)
KNF
Diffstat (limited to 'usr.bin/uniq')
-rw-r--r--usr.bin/uniq/uniq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c
index ae5d76cd24e..ff972b58b24 100644
--- a/usr.bin/uniq/uniq.c
+++ b/usr.bin/uniq/uniq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uniq.c,v 1.26 2017/12/24 00:11:43 tb Exp $ */
+/* $OpenBSD: uniq.c,v 1.27 2018/07/31 02:55:57 deraadt Exp $ */
/* $NetBSD: uniq.c,v 1.7 1995/08/31 22:03:48 jtc Exp $ */
/*
@@ -113,7 +113,7 @@ main(int argc, char *argv[])
if (!dflag && !uflag)
dflag = uflag = 1;
- switch(argc) {
+ switch (argc) {
case 0:
ifp = stdin;
ofp = stdout;