Finish off timers implementation.
diff --git a/Source/timers.c b/Source/timers.c
index fb79603..bf25f8f 100644
--- a/Source/timers.c
+++ b/Source/timers.c
@@ -135,7 +135,7 @@
  * The tick count has overflowed.  Switch the timer lists after ensuring the

  * current timer list does not still reference some timers.

  */

-static void prvSwitchTimerLists( portTickType xLastTime, portTickType xTimeNow ) PRIVILEGED_FUNCTION;

+static void prvSwitchTimerLists( portTickType xLastTime ) PRIVILEGED_FUNCTION;

 

 /*

  * Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE

@@ -391,7 +391,7 @@
 	

 	if( xTimeNow < xLastTime )

 	{

-		prvSwitchTimerLists( xLastTime, xTimeNow );

+		prvSwitchTimerLists( xLastTime );

 		*pxTimerListsWereSwitched = pdTRUE;

 	}

 	else

@@ -517,7 +517,7 @@
 }

 /*-----------------------------------------------------------*/

 

-static void prvSwitchTimerLists( portTickType xLastTime, portTickType xTimeNow )

+static void prvSwitchTimerLists( portTickType xLastTime )

 {

 portTickType xNextExpireTime, xReloadTime;

 xList *pxTemp;