Remove silly superflous parenthesis.

This commit is contained in:
Markus Armbruster 2005-12-03 21:14:26 +00:00
parent e59c4bcfd0
commit e29f288289
8 changed files with 23 additions and 23 deletions

View file

@ -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)