|
From: <sv...@va...> - 2008-03-01 07:41:14
|
Author: bart
Date: 2008-03-01 07:41:17 +0000 (Sat, 01 Mar 2008)
New Revision: 7518
Log:
Fixed compiler warning (duplicate const).
Modified:
trunk/exp-drd/drd_main.c
Modified: trunk/exp-drd/drd_main.c
===================================================================
--- trunk/exp-drd/drd_main.c 2008-03-01 07:35:52 UTC (rev 7517)
+++ trunk/exp-drd/drd_main.c 2008-03-01 07:41:17 UTC (rev 7518)
@@ -684,7 +684,7 @@
/* 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)
{
|