|
From: <sv...@va...> - 2013-10-01 20:10:33
|
Author: florian
Date: Tue Oct 1 20:10:21 2013
New Revision: 13597
Log:
Remove a duplicate const qualifier complained about by clang 3.3
Modified:
trunk/helgrind/libhb_core.c
Modified: trunk/helgrind/libhb_core.c
==============================================================================
--- trunk/helgrind/libhb_core.c (original)
+++ trunk/helgrind/libhb_core.c Tue Oct 1 20:10:21 2013
@@ -6492,7 +6492,7 @@
if (XXX2 && a <= XXX2 && XXX2 <= a+szB) return True;
return False;
}
-static void trace ( Thr* thr, Addr a, SizeT szB, const const HChar* s )
+static void trace ( Thr* thr, Addr a, SizeT szB, const HChar* s )
{
SVal sv = zsm_sread08(a);
VG_(printf)("thr %p (%#lx,%lu) %s: 0x%016llx ", thr,a,szB,s,sv);
|