]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Remove a duplicate const qualifier complained about by clang 3.3
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 1 Oct 2013 20:10:21 +0000 (20:10 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 1 Oct 2013 20:10:21 +0000 (20:10 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13597

helgrind/libhb_core.c

index 05ba817bb37fe080effadbc3c7cc1cbbf75c7373..8f30fe5f2439ef311d0a6d5faef088a5bacef215 100644 (file)
@@ -6492,7 +6492,7 @@ static inline Bool TRACEME(Addr a, SizeT szB) {
    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);