|
From: <sv...@va...> - 2005-09-23 16:38:16
|
Author: sewardj
Date: 2005-09-23 17:38:12 +0100 (Fri, 23 Sep 2005)
New Revision: 4738
Log:
Placate the typechecker in pre-gcc4 snapshot on FC4RC3.
Modified:
branches/ASPACEM/coregrind/m_aspacemgr/aspacemgr.c
branches/ASPACEM/coregrind/pub_core_aspacemgr.h
Modified: branches/ASPACEM/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
--- branches/ASPACEM/coregrind/m_aspacemgr/aspacemgr.c 2005-09-23 16:30:3=
2 UTC (rev 4737)
+++ branches/ASPACEM/coregrind/m_aspacemgr/aspacemgr.c 2005-09-23 16:38:1=
2 UTC (rev 4738)
@@ -969,7 +969,8 @@
a discrepancy is detected, but does not abort the system. Returned
Bool is False if a discrepancy was found. */
=20
-Bool VG_(am_do_sync_check) ( HChar* fn, HChar* file, Int line )
+Bool VG_(am_do_sync_check) ( const HChar* fn,=20
+ const HChar* file, Int line )
{
sync_check_ok =3D True;
if (0)
Modified: branches/ASPACEM/coregrind/pub_core_aspacemgr.h
=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
--- branches/ASPACEM/coregrind/pub_core_aspacemgr.h 2005-09-23 16:30:32 U=
TC (rev 4737)
+++ branches/ASPACEM/coregrind/pub_core_aspacemgr.h 2005-09-23 16:38:12 U=
TC (rev 4738)
@@ -121,7 +121,8 @@
a discrepancy is detected, but does not abort the system. Returned
Bool is False if a discrepancy was found. */
=20
-extern Bool VG_(am_do_sync_check) ( HChar* fn, HChar* file, Int line );
+extern Bool VG_(am_do_sync_check) ( const HChar* fn,=20
+ const HChar* file, Int line );
=20
=20
//--------------------------------------------------------------
|