From c5e477c73a19ff2b7c2cfbd0a4af2e3664903f3a Mon Sep 17 00:00:00 2001 From: skarg Date: Fri, 28 Sep 2012 02:18:04 +0000 Subject: [PATCH] fixed SilenceTimer to match new API --- bacnet-stack/demo/mstpcap/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacnet-stack/demo/mstpcap/main.c b/bacnet-stack/demo/mstpcap/main.c index dffa0de0..414eacb2 100644 --- a/bacnet-stack/demo/mstpcap/main.c +++ b/bacnet-stack/demo/mstpcap/main.c @@ -316,13 +316,13 @@ static void packet_statistics_clear( } static uint32_t Timer_Silence( - void) + void * pArg) { return timer_milliseconds(TIMER_SILENCE); } static void Timer_Silence_Reset( - void) + void * pArg) { timer_reset(TIMER_SILENCE); }