From: Bart Van Assche Date: Wed, 28 May 2008 07:09:54 +0000 (+0000) Subject: Removed the superfluous casts that were introduced in r8132. X-Git-Tag: svn/VALGRIND_3_4_0~548 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f6897cc6c0782ccee073913df390e5f642f4492;p=thirdparty%2Fvalgrind.git Removed the superfluous casts that were introduced in r8132. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8136 --- diff --git a/coregrind/m_syswrap/syswrap-linux.c b/coregrind/m_syswrap/syswrap-linux.c index e419bb27ac..01b5c19a9e 100644 --- a/coregrind/m_syswrap/syswrap-linux.c +++ b/coregrind/m_syswrap/syswrap-linux.c @@ -1741,7 +1741,7 @@ PRE(sys_timerfd_create) if (linux_kernel_2_6_22()) { /* 2.6.22 kernel: timerfd system call. */ - PRINT("sys_timerfd ( %d, %d, %p )", (int)ARG1, ARG2, ARG3); + PRINT("sys_timerfd ( %d, %d, %p )", ARG1, ARG2, ARG3); PRE_REG_READ3(long, "sys_timerfd", int, fd, int, clockid, const struct itimerspec *, tmr); PRE_MEM_READ("timerfd(tmr)", ARG3, @@ -2377,7 +2377,7 @@ POST(sys_sigprocmask) PRE(sys_signalfd) { - PRINT("sys_signalfd ( %d, %p, %llu )", (int)ARG1, ARG2, (ULong) ARG3); + PRINT("sys_signalfd ( %d, %p, %llu )", ARG1, ARG2, (ULong) ARG3); PRE_REG_READ3(long, "sys_signalfd", int, fd, vki_sigset_t *, sigmask, vki_size_t, sigsetsize); PRE_MEM_READ( "signalfd(sigmask)", ARG2, sizeof(vki_sigset_t) );