From: Florian Krohm Date: Tue, 1 Oct 2013 20:10:21 +0000 (+0000) Subject: Remove a duplicate const qualifier complained about by clang 3.3 X-Git-Tag: svn/VALGRIND_3_9_0~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1975cc4fdefb41392ee13f66efe719213b927c20;p=thirdparty%2Fvalgrind.git Remove a duplicate const qualifier complained about by clang 3.3 git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13597 --- diff --git a/helgrind/libhb_core.c b/helgrind/libhb_core.c index 05ba817bb3..8f30fe5f24 100644 --- a/helgrind/libhb_core.c +++ b/helgrind/libhb_core.c @@ -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);