]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix display of buffer address in sendto system call arguments.
authorTom Hughes <tom@compton.nu>
Wed, 7 Jun 2006 17:46:12 +0000 (17:46 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 7 Jun 2006 17:46:12 +0000 (17:46 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5967

coregrind/m_syswrap/syswrap-amd64-linux.c

index 7af579970e61a617c3392e6dabe80fefdeb8ac94..fb8fd35b6668eeae1f12455dd5ea41445b5a2098 100644 (file)
@@ -636,7 +636,7 @@ POST(sys_accept)
 PRE(sys_sendto)
 {
    *flags |= SfMayBlock;
-   PRINT("sys_sendto ( %d, %s, %d, %u, %p, %d )",ARG1,ARG2,ARG3,ARG4,ARG5,ARG6);
+   PRINT("sys_sendto ( %d, %p, %d, %u, %p, %d )",ARG1,ARG2,ARG3,ARG4,ARG5,ARG6);
    PRE_REG_READ6(long, "sendto",
                  int, s, const void *, msg, int, len, 
                  unsigned int, flags,