summaryrefslogtreecommitdiffstats
path: root/trek/main.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-05-24 20:39:43 +0000
committerdholland <dholland@NetBSD.org>2009-05-24 20:39:43 +0000
commitd1e529ba0fda11f991642459e66a3805a1bb06ae (patch)
tree947997b725dda22e7e601d312d6c97e7a8ea1050 /trek/main.c
parentf31fc2c1d85c05180f4cedad70ca7ec4eb8bb85f (diff)
downloadbsdgames-darwin-d1e529ba0fda11f991642459e66a3805a1bb06ae.tar.gz
bsdgames-darwin-d1e529ba0fda11f991642459e66a3805a1bb06ae.tar.zst
bsdgames-darwin-d1e529ba0fda11f991642459e66a3805a1bb06ae.zip
KNF: fix formatting of preprocessor directives
Diffstat (limited to 'trek/main.c')
-rw-r--r--trek/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/trek/main.c b/trek/main.c
index c0456d9c..253b8ac3 100644
--- a/trek/main.c
+++ b/trek/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.14 2009/05/24 19:18:44 dholland Exp $ */
+/* $NetBSD: main.c,v 1.15 2009/05/24 20:39:43 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: main.c,v 1.14 2009/05/24 19:18:44 dholland Exp $");
+__RCSID("$NetBSD: main.c,v 1.15 2009/05/24 20:39:43 dholland Exp $");
#endif
#endif /* not lint */
@@ -54,7 +54,7 @@ __RCSID("$NetBSD: main.c,v 1.14 2009/05/24 19:18:44 dholland Exp $");
#include "trek.h"
#include "getpar.h"
-# define PRIO 00 /* default priority */
+#define PRIO 00 /* default priority */
uid_t Mother = 51 + (51 << 8);
@@ -204,13 +204,13 @@ main(int argc, char **argv)
Etc.fast = 0;
break;
-# ifdef xTRACE
+#ifdef xTRACE
case 't': /* trace */
if (getuid() != Mother)
goto badflag;
Trace++;
break;
-# endif
+#endif
case 'p': /* set priority */
if (getuid() != Mother)