aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2003-03-20 08:34:26 +0000
committeriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2003-03-20 08:34:26 +0000
commit4a1fe2ff023c49cc5e3cbcf255647223a9ab5fca (patch)
tree0b2dc4a6c65399ec78326564c26c20af0fc61b85
parent2687309e0987e504e4129251667eb3a67aad365b (diff)
downloadxen-4a1fe2ff023c49cc5e3cbcf255647223a9ab5fca.tar.gz
xen-4a1fe2ff023c49cc5e3cbcf255647223a9ab5fca.tar.bz2
xen-4a1fe2ff023c49cc5e3cbcf255647223a9ab5fca.zip
bitkeeper revision 1.149 (3e797d12w2a9Jkg9CeHbUBtMWxrA5Q)
Fixed syntax error in schedule.c. Quality software ;-)
-rw-r--r--xen/common/schedule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/schedule.c b/xen/common/schedule.c
index 51fd45b428..59639e4e8c 100644
--- a/xen/common/schedule.c
+++ b/xen/common/schedule.c
@@ -212,7 +212,7 @@ long sched_adjdom(int dom, unsigned long mcu_adv, unsigned long warp,
****************************************************************************/
void reschedule(struct task_struct *p)
{
- int cpu = p->processor;;
+ int cpu = p->processor;
struct task_struct *curr;
unsigned long flags;
s_time_t now, min_time;