From ad2d4ff7a9d66008facfa171dad075c4a0397f13 Mon Sep 17 00:00:00 2001 From: YONETANI Tomokazu Date: Mon, 25 Apr 2011 00:45:19 +0900 Subject: [PATCH 1/2] Remove double semi-colon --- sys/kern/kern_exit.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c index 1e5a110..dda3a3e 100644 --- a/sys/kern/kern_exit.c +++ b/sys/kern/kern_exit.c @@ -686,7 +686,7 @@ lwp_exit(int masterexit) static int lwp_wait(struct lwp *lp) { - struct thread *td = lp->lwp_thread;; + struct thread *td = lp->lwp_thread; KKASSERT(lwkt_preempted_proc() != lp); @@ -724,7 +724,7 @@ lwp_wait(struct lwp *lp) void lwp_dispose(struct lwp *lp) { - struct thread *td = lp->lwp_thread;; + struct thread *td = lp->lwp_thread; KKASSERT(lwkt_preempted_proc() != lp); KKASSERT(td->td_refs == 0); -- 1.7.3.2