Fix the bug in compilation in the style fix run.

This commit is contained in:
Frantisek Burian
2014-02-13 20:24:22 +01:00
parent 06208be477
commit 8ffaf0579d

View File

@@ -42,7 +42,7 @@ void sys_tick_handler(void)
static void msleep(uint32_t delay)
{
uint32_t wake = system_millis + delay;
while (wake > system_millis;
while (wake > system_millis);
}
/* Set up a timer to create 1mS ticks. */