Remove a trailing semicolon in SCHED_QUANTUM definition.

Luckily this didn't cause any bugs.

Spotted by:	Samy Al Bahra <samy@kerneled.com>
This commit is contained in:
Maxime Henrion 2003-03-24 15:16:21 +00:00
parent d49d7ca591
commit 4974b53e31

View File

@ -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;