Remove some compiler warnings

ugfx_release_2.7
inmarket 2016-12-06 12:14:06 +10:00
parent fa668d846e
commit 76671249d6
2 changed files with 1 additions and 3 deletions

View File

@ -122,7 +122,6 @@ void gfxSleepMilliseconds(delaytime_t ms) {
case TIME_INFINITE: case TIME_INFINITE:
while(1) while(1)
gfxYield(); gfxYield();
return;
} }
// Convert our delay to ticks // Convert our delay to ticks
@ -144,7 +143,6 @@ void gfxSleepMicroseconds(delaytime_t ms) {
case TIME_INFINITE: case TIME_INFINITE:
while(1) while(1)
gfxYield(); gfxYield();
return;
} }
// Convert our delay to ticks // Convert our delay to ticks

View File

@ -109,7 +109,7 @@ static DECLARE_THREAD_FUNCTION(GTimerThreadHandler, arg) {
lastTime = tm; lastTime = tm;
gfxMutexExit(&mutex); gfxMutexExit(&mutex);
} }
THREAD_RETURN(0); // THREAD_RETURN(0);
} }
void _gtimerInit(void) void _gtimerInit(void)