summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormux <mux@FreeBSD.org>2003-03-24 15:16:21 +0000
committermux <mux@FreeBSD.org>2003-03-24 15:16:21 +0000
commitcfd612e2d7675d11bb4a56d92166c79d3bcb9810 (patch)
tree3aa7f876192999b52d6505b18abc6fb0f72bc382
parent063b352331c9002a70d3bb671f24048686029693 (diff)
downloadFreeBSD-src-cfd612e2d7675d11bb4a56d92166c79d3bcb9810.zip
FreeBSD-src-cfd612e2d7675d11bb4a56d92166c79d3bcb9810.tar.gz
Remove a trailing semicolon in SCHED_QUANTUM definition.
Luckily this didn't cause any bugs. Spotted by: Samy Al Bahra <samy@kerneled.com>
-rw-r--r--sys/kern/sched_4bsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sched_4bsd.c b/sys/kern/sched_4bsd.c
index 0ea397b..fe6dfd9 100644
--- a/sys/kern/sched_4bsd.c
+++ b/sys/kern/sched_4bsd.c
@@ -73,7 +73,7 @@ struct p_sched *proc0_sched = NULL;
struct td_sched *thread0_sched = NULL;
static int sched_quantum; /* Roundrobin scheduling quantum in ticks. */
-#define SCHED_QUANTUM (hz / 10); /* Default sched quantum */
+#define SCHED_QUANTUM (hz / 10) /* Default sched quantum */
static struct callout schedcpu_callout;
static struct callout roundrobin_callout;
OpenPOWER on IntegriCloud