|
From: <sv...@va...> - 2015-08-16 11:54:45
|
Author: sewardj
Date: Sun Aug 16 12:54:38 2015
New Revision: 15556
Log:
Fix format string confusion that was somehow related to r15510.
Modified:
trunk/coregrind/m_syswrap/syswrap-arm64-linux.c
Modified: trunk/coregrind/m_syswrap/syswrap-arm64-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-arm64-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-arm64-linux.c Sun Aug 16 12:54:38 2015
@@ -442,7 +442,7 @@
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,
|