fixed SilenceTimer to match new API

This commit is contained in:
skarg
2012-09-28 02:18:04 +00:00
parent fbed15b2da
commit c5e477c73a
+2 -2
View File
@@ -316,13 +316,13 @@ static void packet_statistics_clear(
} }
static uint32_t Timer_Silence( static uint32_t Timer_Silence(
void) void * pArg)
{ {
return timer_milliseconds(TIMER_SILENCE); return timer_milliseconds(TIMER_SILENCE);
} }
static void Timer_Silence_Reset( static void Timer_Silence_Reset(
void) void * pArg)
{ {
timer_reset(TIMER_SILENCE); timer_reset(TIMER_SILENCE);
} }