summaryrefslogtreecommitdiff
path: root/nuttx/arch/rgmp/src
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-12 13:09:48 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-12 13:09:48 -0600
commit5d99549aca261d40abf3e0d7180c2bddca3522b3 (patch)
tree8602dccf7672ec2af9de95c9b005fea2e9a37243 /nuttx/arch/rgmp/src
parent5fbbc21f13770cc35c3e61e3109c125d03f172eb (diff)
downloadnuttx-5d99549aca261d40abf3e0d7180c2bddca3522b3.tar.gz
nuttx-5d99549aca261d40abf3e0d7180c2bddca3522b3.tar.bz2
nuttx-5d99549aca261d40abf3e0d7180c2bddca3522b3.zip
Make sure that there is one space between while and condition
Diffstat (limited to 'nuttx/arch/rgmp/src')
-rw-r--r--nuttx/arch/rgmp/src/rgmp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/arch/rgmp/src/rgmp.c b/nuttx/arch/rgmp/src/rgmp.c
index db5dd955e..e71782112 100644
--- a/nuttx/arch/rgmp/src/rgmp.c
+++ b/nuttx/arch/rgmp/src/rgmp.c
@@ -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)