diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-02-13 18:51:39 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-02-13 18:51:39 +0000 |
commit | b04fb61e93b0a6892a6c6d2b22acd4e5524fc67e (patch) | |
tree | aaec4f3e9b452877eb01567408550995e0b487d4 /sys | |
parent | 046c5b569830d9c01e2480003314c3a6bd53154b (diff) | |
download | FreeBSD-src-b04fb61e93b0a6892a6c6d2b22acd4e5524fc67e.zip FreeBSD-src-b04fb61e93b0a6892a6c6d2b22acd4e5524fc67e.tar.gz |
Remove semicolon left in the last commit
Spotted by: csjp
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/subr_taskqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_taskqueue.c b/sys/kern/subr_taskqueue.c index bdb97f3..bd4f34d 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--; |