linux-user,s390x: remove useless cast
authorLaurent Vivier <lvivier@redhat.com>
Wed, 15 Jun 2016 16:14:32 +0000 (18:14 +0200)
committerMichael Tokarev <mjt@tls.msk.ru>
Thu, 15 Sep 2016 12:32:22 +0000 (15:32 +0300)
This patch is the result of coccinelle script
scripts/coccinelle/typecast.cocci

CC: Riku Voipio <riku.voipio@iki.fi>
CC: Alexander Graf <agraf@suse.de>
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
linux-user/signal.c

index 9a4d894e3afe346d258789a0bbcb683b3cfd496d..d3ac0e256520a56d830a453729560b0055dee5a7 100644 (file)
@@ -4244,7 +4244,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;