Make sure that there is one space after for

This commit is contained in:
Gregory Nutt
2014-04-12 13:28:22 -06:00
parent bb851fc8b5
commit 171db56b69
10 changed files with 15 additions and 15 deletions

View File

@@ -171,7 +171,7 @@ int shell_session(int argc, char *argv[])
stkmon_disp(); stkmon_disp();
#endif #endif
for(;;) for (;;)
{ {
printf(SHELL_PROMPT); printf(SHELL_PROMPT);
fflush(stdout); fflush(stdout);

View File

@@ -61,7 +61,7 @@ static void *thread_waiter(void *parameter)
printf("waiter_thread: Started\n"); printf("waiter_thread: Started\n");
for(;;) for (;;)
{ {
/* Take the mutex */ /* Take the mutex */

View File

@@ -164,7 +164,7 @@ int shell_session(int argc, char *argv[])
printf("uIP command shell -- NuttX style\n"); printf("uIP command shell -- NuttX style\n");
printf("Type '?' and return for help\n"); printf("Type '?' and return for help\n");
for(;;) for (;;)
{ {
printf(SHELL_PROMPT); printf(SHELL_PROMPT);
fflush(stdout); fflush(stdout);

View File

@@ -756,7 +756,7 @@ int thttpd_main(int argc, char **argv)
nvdbg("Entering the main loop\n"); nvdbg("Entering the main loop\n");
(void)gettimeofday(&tv, NULL); (void)gettimeofday(&tv, NULL);
for(;;) for (;;)
{ {
/* Do the fd watch */ /* Do the fd watch */

View File

@@ -548,7 +548,7 @@ static int wget_base(FAR const char *url, FAR char *buffer, int buflen,
ws.state = WEBCLIENT_STATE_STATUSLINE; ws.state = WEBCLIENT_STATE_STATUSLINE;
redirected = false; redirected = false;
for(;;) for (;;)
{ {
ws.datend = recv(sockfd, ws.buffer, ws.buflen, 0); ws.datend = recv(sockfd, ws.buffer, ws.buflen, 0);
if (ws.datend < 0) if (ws.datend < 0)

View File

@@ -96,7 +96,7 @@ int httpd_fs_open(const char *name, struct httpd_fs_file *file)
#endif #endif
struct httpd_fsdata_file_noconst *f; struct httpd_fsdata_file_noconst *f;
for(f = (struct httpd_fsdata_file_noconst *)g_httpdfs_root; for (f = (struct httpd_fsdata_file_noconst *)g_httpdfs_root;
f != NULL; f != NULL;
f = (struct httpd_fsdata_file_noconst *)f->next) f = (struct httpd_fsdata_file_noconst *)f->next)
{ {
@@ -123,7 +123,7 @@ void httpd_fs_init(void)
count = (uint16_t*)malloc(g_httpd_numfiles * sizeof(uint16_t)); count = (uint16_t*)malloc(g_httpd_numfiles * sizeof(uint16_t));
for(i = 0; i < g_httpd_numfiles; i++) for (i = 0; i < g_httpd_numfiles; i++)
{ {
count[i] = 0; count[i] = 0;
} }
@@ -137,7 +137,7 @@ uint16_t httpd_fs_count(char *name)
uint16_t i; uint16_t i;
i = 0; i = 0;
for(f = (struct httpd_fsdata_file_noconst *)g_httpdfs_root; for (f = (struct httpd_fsdata_file_noconst *)g_httpdfs_root;
f != NULL; f != NULL;
f = (struct httpd_fsdata_file_noconst *)f->next) f = (struct httpd_fsdata_file_noconst *)f->next)
{ {

View File

@@ -391,7 +391,7 @@ static int cmd_codecs_proc(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv,
MD5Final(mac, &ctx); MD5Final(mac, &ctx);
pSrc = (char *)&mac; pSrc = (char *)&mac;
pDest = buffer; pDest = buffer;
for(i=0;i<16;i++,pSrc++) for (i = 0; i < 16; i++, pSrc++)
{ {
*pDest++ = hex_chars[(*pSrc) >> 4]; *pDest++ = hex_chars[(*pSrc) >> 4];
*pDest++ = hex_chars[(*pSrc) & 0x0f]; *pDest++ = hex_chars[(*pSrc) & 0x0f];
@@ -427,7 +427,7 @@ static int cmd_codecs_proc(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv,
MD5Final(mac, &ctx); MD5Final(mac, &ctx);
pSrc = (char *)&mac; pSrc = (char *)&mac;
pDest = buffer; pDest = buffer;
for(i=0;i<16;i++,pSrc++) for (i = 0; i < 16; i++, pSrc++)
{ {
*pDest++ = hex_chars[(*pSrc) >> 4]; *pDest++ = hex_chars[(*pSrc) >> 4];
*pDest++ = hex_chars[(*pSrc) & 0x0f]; *pDest++ = hex_chars[(*pSrc) & 0x0f];

View File

@@ -619,7 +619,7 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
if (argc > 2) if (argc > 2)
{ {
for(i = 0; i < argc; i++) for (i = 0; i < argc; i++)
{ {
if (i == 1) if (i == 1)
{ {

View File

@@ -123,7 +123,7 @@ int nsh_telnetlogin(struct console_stdio_s *pstate)
/* Loop for the configured number of retries */ /* Loop for the configured number of retries */
for(i = 0; i < CONFIG_NSH_TELNET_FAILCOUNT; i++) for (i = 0; i < CONFIG_NSH_TELNET_FAILCOUNT; i++)
{ {
/* Ask for the login username */ /* Ask for the login username */

View File

@@ -141,7 +141,7 @@ ssize_t readline_common(FAR struct rl_common_s *vtbl, FAR char *buf, int buflen)
escape = 0; escape = 0;
nch = 0; nch = 0;
for(;;) for (;;)
{ {
/* Get the next character. readline_rawgetc() returns EOF on any /* Get the next character. readline_rawgetc() returns EOF on any
* errors or at the end of file. * errors or at the end of file.