mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
Don't use cast as lvalue.
This commit is contained in:
parent
07c424cdaf
commit
32494fa097
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132834
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user