]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix type in r10951. Not sure why this didn't cause a compilation
authorJulian Seward <jseward@acm.org>
Wed, 25 Nov 2009 13:57:47 +0000 (13:57 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 25 Nov 2009 13:57:47 +0000 (13:57 +0000)
error, but least on ppc32-linux it didn't.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10956

coregrind/m_syswrap/syswrap-generic.c

index bd78cbd1925ce97b455b233a46d8bfc464a0bb1a..de7a3062cd687bdf66386353ab8a7518ede42ae9 100644 (file)
@@ -2355,7 +2355,7 @@ PRE(sys_pwrite64)
          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);