svn commit: r188592 - head/sys/kern

Andrew Thompson thompsa at FreeBSD.org
Fri Feb 13 10:51:41 PST 2009


Author: thompsa
Date: Fri Feb 13 18:51:39 2009
New Revision: 188592
URL: http://svn.freebsd.org/changeset/base/188592

Log:
  Remove semicolon left in the last commit
  
  Spotted by:	csjp

Modified:
  head/sys/kern/subr_taskqueue.c

Modified: head/sys/kern/subr_taskqueue.c
==============================================================================
--- head/sys/kern/subr_taskqueue.c	Fri Feb 13 18:45:36 2009	(r188591)
+++ head/sys/kern/subr_taskqueue.c	Fri Feb 13 18:51:39 2009	(r188592)
@@ -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--;


More information about the svn-src-all mailing list