|
From: <sv...@va...> - 2009-11-25 13:58:02
|
Author: sewardj
Date: 2009-11-25 13:57:47 +0000 (Wed, 25 Nov 2009)
New Revision: 10956
Log:
Fix type in r10951. Not sure why this didn't cause a compilation
error, but least on ppc32-linux it didn't.
Modified:
trunk/coregrind/m_syswrap/syswrap-generic.c
Modified: trunk/coregrind/m_syswrap/syswrap-generic.c
===================================================================
--- trunk/coregrind/m_syswrap/syswrap-generic.c 2009-11-25 12:05:41 UTC (rev 10955)
+++ trunk/coregrind/m_syswrap/syswrap-generic.c 2009-11-25 13:57:47 UTC (rev 10956)
@@ -2355,7 +2355,7 @@
ARG1, ARG2, (ULong)ARG3, MERGE64(ARG4,ARG5));
PRE_REG_READ5(ssize_t, "pwrite64",
unsigned int, fd, const char *, buf, vki_size_t, count,
- vki_u32, MERG64_FIRST(offset), vki_u32, MERGE64_SECOND(offset));
+ vki_u32, MERGE64_FIRST(offset), vki_u32, MERGE64_SECOND(offset));
#elif VG_WORDSIZE == 8
PRINT("sys_pwrite64 ( %ld, %#lx, %llu, %lld )",
ARG1, ARG2, (ULong)ARG3, (Long)ARG4);
|