summaryrefslogtreecommitdiff
path: root/apps/system/install
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 /apps/system/install
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 'apps/system/install')
-rw-r--r--apps/system/install/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/system/install/install.c b/apps/system/install/install.c
index cc60df7c3..807744a7d 100644
--- a/apps/system/install/install.c
+++ b/apps/system/install/install.c
@@ -174,7 +174,7 @@ static int install_programflash(int startaddr, const char *source)
startaddr += count;
totalsize += count;
}
- while(count);
+ while (count);
}
else
{
@@ -308,7 +308,7 @@ static int install_remove(const char *scriptname)
progsize -= up_progmem_pagesize(page);
}
- while(progsize > 0);
+ while (progsize > 0);
if (status < 0)
{