]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix format string confusion that was somehow related to r15510.
authorJulian Seward <jseward@acm.org>
Sun, 16 Aug 2015 11:54:38 +0000 (11:54 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 16 Aug 2015 11:54:38 +0000 (11:54 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15556

coregrind/m_syswrap/syswrap-arm64-linux.c

index 10872fad86e5b3c06efc8d9aed3beb98c43b8bb5..30e523f67374504ac4005e19239129fdd3465a2a 100644 (file)
@@ -442,7 +442,7 @@ PRE(sys_mmap)
    SysRes r;
 
    PRINT("sys_mmap ( %#lx, %lu, %lu, %#lx, %lu, %lu )",
-         ARG1, (ULong)ARG2, ARG3, ARG4, ARG5, ARG6 );
+         ARG1, ARG2, ARG3, ARG4, ARG5, ARG6 );
    PRE_REG_READ6(long, "mmap",
                  unsigned long, start, unsigned long, length,
                  unsigned long, prot,  unsigned long, flags,