summaryrefslogtreecommitdiffstats
path: root/usr.bin/nice/nice.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-02-13 20:43:29 +0000
committertedu <tedu@openbsd.org>2014-02-13 20:43:29 +0000
commit7b061740f0f5b3a6c482eb73cea6f85fec04351e (patch)
treed7c55d2e90339e6bfd21a511d7e3891407c6aa4c /usr.bin/nice/nice.c
parentthis one is non obvious enough it deserves a comment (diff)
downloadwireguard-openbsd-7b061740f0f5b3a6c482eb73cea6f85fec04351e.tar.xz
wireguard-openbsd-7b061740f0f5b3a6c482eb73cea6f85fec04351e.zip
small style fix from jan stary
Diffstat (limited to 'usr.bin/nice/nice.c')
-rw-r--r--usr.bin/nice/nice.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/nice/nice.c b/usr.bin/nice/nice.c
index 6ff79db39e8..398b00b54d7 100644
--- a/usr.bin/nice/nice.c
+++ b/usr.bin/nice/nice.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nice.c,v 1.12 2013/11/20 20:52:12 deraadt Exp $ */
+/* $OpenBSD: nice.c,v 1.13 2014/02/13 20:43:29 tedu Exp $ */
/* $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $ */
/*
@@ -30,7 +30,6 @@
* SUCH DAMAGE.
*/
-#include <sys/time.h>
#include <sys/resource.h>
#include <stdio.h>
#include <stdlib.h>
@@ -72,7 +71,8 @@ main(int argc, char *argv[])
break;
}
}
- argc -= optind; argv += optind;
+ argc -= optind;
+ argv += optind;
if (argc == 0)
usage();