|
From: <sv...@va...> - 2005-09-30 08:13:00
|
Author: tom
Date: 2005-09-30 09:12:54 +0100 (Fri, 30 Sep 2005)
New Revision: 4835
Log:
Removed surplus parenthesis.
Modified:
trunk/coregrind/m_aspacemgr/aspacemgr.c
Modified: trunk/coregrind/m_aspacemgr/aspacemgr.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_aspacemgr/aspacemgr.c 2005-09-30 08:07:53 UTC (rev =
4834)
+++ trunk/coregrind/m_aspacemgr/aspacemgr.c 2005-09-30 08:12:54 UTC (rev =
4835)
@@ -230,7 +230,7 @@
SysRes res;
# if defined(VGP_x86_linux) || defined(VGP_ppc32_linux)
res =3D 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 =3D VG_(do_syscall6)(__NR_mmap, (UWord)start, length,=20
prot, flags, fd, offset);
|