minor corrections to adhere contiki code style guidelines

This commit is contained in:
Giovanni `evilaliv3` Pellerano 2012-12-21 12:36:29 +01:00
parent aa07993d36
commit ee556dcf14
7 changed files with 47 additions and 47 deletions

View file

@ -120,9 +120,9 @@ clock_delay_usec(uint16_t dt)
stop = now + dt * ((pic32_clock_get_system_clock() / 1000000) / 2);
for (;;) {
for(;;) {
asm volatile("mfc0 %0, $9" : "=r"(now));
if ((int32_t) (now - stop) >= 0) {
if((int32_t)(now - stop) >= 0) {
break;
}
}