Fixing compiler warning/error

ugfx_release_2.6
Joel Bodenmann 2015-10-18 20:01:31 +02:00 committed by inmarket
parent 506355309e
commit e6867c4e48
1 changed files with 2 additions and 1 deletions

View File

@ -29,13 +29,14 @@ static DECLARE_THREAD_STACK(waTimerThread, GTIMER_THREAD_WORKAREA_SIZE);
/*===========================================================================*/
static DECLARE_THREAD_FUNCTION(GTimerThreadHandler, arg) {
(void)arg;
GTimer *pt;
systemticks_t tm;
systemticks_t nxtTimeout;
systemticks_t lastTime;
GTimerFunction fn;
void *param;
(void)arg;
nxtTimeout = TIME_INFINITE;
lastTime = 0;