Don't use cast as lvalue.

This commit is contained in:
Olivier Houchard 2004-07-29 12:33:54 +00:00
parent 07c424cdaf
commit 32494fa097

View file

@ -117,7 +117,7 @@ sendsig(catcher, sig, mask, code)
fp--;
/* make the stack aligned */
(u_int)fp = _ALIGN(fp);
fp = (struct sigframe *)_ALIGN(fp);
/* Populate the siginfo frame. */
frame.sf_si.si_signo = sig;
frame.sf_si.si_code = code;