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 303cc1902b
commit 056aed1274
35 changed files with 59 additions and 54 deletions
+4 -3
View File
@@ -151,9 +151,10 @@ void rtos_stop_running(void)
nuttx_arch_exit();
while(1) {
arch_hlt();
}
while (1)
{
arch_hlt();
}
}
int rtos_vnet_init(struct rgmp_vnet *vnet)