mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't use cast as lvalue.
This commit is contained in:
parent
07c424cdaf
commit
32494fa097
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue