From 48b824703b35e17965c738743c7394e1fc0017ec Mon Sep 17 00:00:00 2001 From: rsc Date: Wed, 6 Sep 2006 17:57:47 +0000 Subject: break single-line if statements --- mp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mp.c') diff --git a/mp.c b/mp.c index b18bc1a..3b67b50 100644 --- a/mp.c +++ b/mp.c @@ -204,7 +204,8 @@ mp_startthem(void) (uint) _binary_bootother_size); for(c = 0; c < ncpu; c++){ - if(c == cpu()) continue; + if(c == cpu()) + continue; *(uint*)(APBOOTCODE-4) = (uint) (cpus[c].mpstack) + MPSTACK; // tell it what to use for %esp *(uint*)(APBOOTCODE-8) = (uint)mpmain; // tell it where to jump to lapic_startap(cpus[c].apicid, (uint) APBOOTCODE); -- cgit v1.2.3