From: Bart Van Assche Date: Sat, 1 Mar 2008 07:41:17 +0000 (+0000) Subject: Fixed compiler warning (duplicate const). X-Git-Tag: svn/VALGRIND_3_4_0~995 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dedae4123efb32f4b2f5f841ccfe5d268f5e0fb1;p=thirdparty%2Fvalgrind.git Fixed compiler warning (duplicate const). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7518 --- diff --git a/exp-drd/drd_main.c b/exp-drd/drd_main.c index af447f31f0..c4de7499ce 100644 --- a/exp-drd/drd_main.c +++ b/exp-drd/drd_main.c @@ -684,7 +684,7 @@ IRSB* drd_instrument(VgCallbackClosure* const closure, /* Based on the function with the same name in Helgrind's hg_main.c */ static void instrument_memory_bus_event(IRSB* const bb, - const IRMBusEvent const event) + const IRMBusEvent event) { switch (event) {