Remove silly superflous parenthesis.
This commit is contained in:
parent
e59c4bcfd0
commit
e29f288289
8 changed files with 23 additions and 23 deletions
|
@ -374,10 +374,10 @@ lwpInitContext(struct lwpProc *newp, void *sp)
|
|||
void
|
||||
lwpInitContext(struct lwpProc *newp, stack_t *spp)
|
||||
{
|
||||
getcontext(&(newp->context));
|
||||
getcontext(&newp->context);
|
||||
newp->context.uc_stack.ss_sp = spp->ss_sp;
|
||||
newp->context.uc_stack.ss_size = spp->ss_size;
|
||||
makecontext(&(newp->context), lwpEntryPoint, 0);
|
||||
makecontext(&newp->context, lwpEntryPoint, 0);
|
||||
}
|
||||
|
||||
#elif defined(ALPHA)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue