This patch is the result of coccinelle script
scripts/coccinelle/typecast.cocci

CC: Riku Voipio <[email protected]>
CC: Alexander Graf <[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
---
 linux-user/signal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/signal.c b/linux-user/signal.c
index 61c1145..df3d584 100644
--- a/linux-user/signal.c
+++ b/linux-user/signal.c
@@ -4232,7 +4232,7 @@ static void setup_frame(int sig, struct target_sigaction 
*ka,
     env->regs[5] = 0; // FIXME: no clue... current->thread.prot_addr;
 
     /* Place signal number on stack to allow backtrace from handler.  */
-    __put_user(env->regs[2], (int *) &frame->signo);
+    __put_user(env->regs[2], &frame->signo);
     unlock_user_struct(frame, frame_addr, 1);
     return;
 
-- 
2.5.5


Reply via email to