From 32494fa097756c6d60d572e5be72c350fe577eda Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Thu, 29 Jul 2004 12:33:54 +0000 Subject: [PATCH] Don't use cast as lvalue. --- sys/arm/arm/machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/arm/machdep.c b/sys/arm/arm/machdep.c index ed20ce61688..8b23898f215 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;