From 1975cc4fdefb41392ee13f66efe719213b927c20 Mon Sep 17 00:00:00 2001 From: Florian Krohm Date: Tue, 1 Oct 2013 20:10:21 +0000 Subject: [PATCH] Remove a duplicate const qualifier complained about by clang 3.3 git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13597 --- helgrind/libhb_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2