Make sure that there is one space between while and condition

This commit is contained in:
Gregory Nutt 2014-04-12 13:09:48 -06:00
parent eee82879cb
commit 33d5d24964
19 changed files with 26 additions and 24 deletions

View File

@ -130,6 +130,7 @@ static inline void pic32mx_waitstates(void)
nwaits++;
residual -= MAX_FLASH_HZ;
}
DEBUGASSERT(nwaits < 8);
/* Set the FLASH wait states -- clearing all other bits! */

View File

@ -151,7 +151,8 @@ void rtos_stop_running(void)
nuttx_arch_exit();
while(1) {
while (1)
{
arch_hlt();
}
}