aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_taskqueue.c
diff options
context:
space:
mode:
authorAndrew Thompson <thompsa@FreeBSD.org>2009-02-13 18:51:39 +0000
committerAndrew Thompson <thompsa@FreeBSD.org>2009-02-13 18:51:39 +0000
commita1797ef6c891e9e436acfcfe8ef4697ae44b7778 (patch)
treeaaec4f3e9b452877eb01567408550995e0b487d4 /sys/kern/subr_taskqueue.c
parent5f4638f185c4bdf82cbb7cd709a6c55a140284ae (diff)
downloadsrc-a1797ef6c891e9e436acfcfe8ef4697ae44b7778.tar.gz
src-a1797ef6c891e9e436acfcfe8ef4697ae44b7778.zip
Remove semicolon left in the last commit
Spotted by: csjp
Notes
Notes: svn path=/head/; revision=188592
Diffstat (limited to 'sys/kern/subr_taskqueue.c')
-rw-r--r--sys/kern/subr_taskqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_taskqueue.c b/sys/kern/subr_taskqueue.c
index bdb97f30e76f..bd4f34d9b9bc 100644
--- a/sys/kern/subr_taskqueue.c
+++ b/sys/kern/subr_taskqueue.c
@@ -402,7 +402,7 @@ taskqueue_thread_loop(void *arg)
while ((tq->tq_flags & TQ_FLAGS_ACTIVE) != 0) {
taskqueue_run(tq);
TQ_SLEEP(tq, tq, &tq->tq_mutex, 0, "-", 0);
- };
+ }
/* rendezvous with thread that asked us to terminate */
tq->tq_tcount--;