From: Tom Hughes Date: Fri, 30 Sep 2005 08:12:54 +0000 (+0000) Subject: Removed surplus parenthesis. X-Git-Tag: svn/VALGRIND_3_1_0~393 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=babdf0de71c6dee2e578580cff6287c0437dd8fd;p=thirdparty%2Fvalgrind.git Removed surplus parenthesis. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4835 --- diff --git a/coregrind/m_aspacemgr/aspacemgr.c b/coregrind/m_aspacemgr/aspacemgr.c index 522f4ec486..155f35216d 100644 --- a/coregrind/m_aspacemgr/aspacemgr.c +++ b/coregrind/m_aspacemgr/aspacemgr.c @@ -230,7 +230,7 @@ SysRes VG_(am_do_mmap_NO_NOTIFY)( Addr start, SizeT length, UInt prot, SysRes res; # if defined(VGP_x86_linux) || defined(VGP_ppc32_linux) res = VG_(do_syscall6)(__NR_mmap2, (UWord)start, length, - prot, flags, fd, offset / VKI_PAGE_SIZE)); + prot, flags, fd, offset / VKI_PAGE_SIZE); # elif defined(VGP_amd64_linux) res = VG_(do_syscall6)(__NR_mmap, (UWord)start, length, prot, flags, fd, offset);