summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcognet <cognet@FreeBSD.org>2004-07-29 12:33:54 +0000
committercognet <cognet@FreeBSD.org>2004-07-29 12:33:54 +0000
commit7c7f4453cff2e9b2df52a0c3ca0502021f5ed774 (patch)
tree5dcf7a2d15bc36585008a756f5bddc683d20ece2
parent8e620f7e71f2821a778dd7f4c8c3059a9fca33ff (diff)
downloadFreeBSD-src-7c7f4453cff2e9b2df52a0c3ca0502021f5ed774.zip
FreeBSD-src-7c7f4453cff2e9b2df52a0c3ca0502021f5ed774.tar.gz
Don't use cast as lvalue.
-rw-r--r--sys/arm/arm/machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/arm/machdep.c b/sys/arm/arm/machdep.c
index ed20ce6..8b23898 100644
--- a/sys/arm/arm/machdep.c
+++ b/sys/arm/arm/machdep.c
@@ -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;
OpenPOWER on IntegriCloud