From 74a4eb6d1612d63958e14a240cc526c9be8041e0 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 12 Apr 2014 13:28:22 -0600 Subject: Make sure that there is one space after for --- apps/examples/cc3000/shell.c | 2 +- apps/examples/ostest/cond.c | 2 +- apps/examples/telnetd/shell.c | 2 +- apps/netutils/thttpd/thttpd.c | 2 +- apps/netutils/webclient/webclient.c | 2 +- apps/netutils/webserver/httpd_fs.c | 10 +++++----- apps/nshlib/nsh_codeccmd.c | 4 ++-- apps/nshlib/nsh_netcmds.c | 2 +- apps/nshlib/nsh_telnetd.c | 2 +- apps/system/readline/readline_common.c | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) (limited to 'apps') diff --git a/apps/examples/cc3000/shell.c b/apps/examples/cc3000/shell.c index 9678863e0..f28d3f0ed 100644 --- a/apps/examples/cc3000/shell.c +++ b/apps/examples/cc3000/shell.c @@ -171,7 +171,7 @@ int shell_session(int argc, char *argv[]) stkmon_disp(); #endif - for(;;) + for (;;) { printf(SHELL_PROMPT); fflush(stdout); diff --git a/apps/examples/ostest/cond.c b/apps/examples/ostest/cond.c index 35456efc1..ed95473de 100644 --- a/apps/examples/ostest/cond.c +++ b/apps/examples/ostest/cond.c @@ -61,7 +61,7 @@ static void *thread_waiter(void *parameter) printf("waiter_thread: Started\n"); - for(;;) + for (;;) { /* Take the mutex */ diff --git a/apps/examples/telnetd/shell.c b/apps/examples/telnetd/shell.c index c26b1e168..03d178e9c 100644 --- a/apps/examples/telnetd/shell.c +++ b/apps/examples/telnetd/shell.c @@ -164,7 +164,7 @@ int shell_session(int argc, char *argv[]) printf("uIP command shell -- NuttX style\n"); printf("Type '?' and return for help\n"); - for(;;) + for (;;) { printf(SHELL_PROMPT); fflush(stdout); diff --git a/apps/netutils/thttpd/thttpd.c b/apps/netutils/thttpd/thttpd.c index a04a932bf..57fe43514 100644 --- a/apps/netutils/thttpd/thttpd.c +++ b/apps/netutils/thttpd/thttpd.c @@ -756,7 +756,7 @@ int thttpd_main(int argc, char **argv) nvdbg("Entering the main loop\n"); (void)gettimeofday(&tv, NULL); - for(;;) + for (;;) { /* Do the fd watch */ diff --git a/apps/netutils/webclient/webclient.c b/apps/netutils/webclient/webclient.c index 741f7a176..ea1bd0714 100644 --- a/apps/netutils/webclient/webclient.c +++ b/apps/netutils/webclient/webclient.c @@ -548,7 +548,7 @@ static int wget_base(FAR const char *url, FAR char *buffer, int buflen, ws.state = WEBCLIENT_STATE_STATUSLINE; redirected = false; - for(;;) + for (;;) { ws.datend = recv(sockfd, ws.buffer, ws.buflen, 0); if (ws.datend < 0) diff --git a/apps/netutils/webserver/httpd_fs.c b/apps/netutils/webserver/httpd_fs.c index b8eae3063..8d1cddbab 100644 --- a/apps/netutils/webserver/httpd_fs.c +++ b/apps/netutils/webserver/httpd_fs.c @@ -96,9 +96,9 @@ int httpd_fs_open(const char *name, struct httpd_fs_file *file) #endif struct httpd_fsdata_file_noconst *f; - for(f = (struct httpd_fsdata_file_noconst *)g_httpdfs_root; - f != NULL; - f = (struct httpd_fsdata_file_noconst *)f->next) + for (f = (struct httpd_fsdata_file_noconst *)g_httpdfs_root; + f != NULL; + f = (struct httpd_fsdata_file_noconst *)f->next) { if (httpd_fs_strcmp(name, f->name) == 0) { @@ -123,7 +123,7 @@ void httpd_fs_init(void) 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; } @@ -137,7 +137,7 @@ uint16_t httpd_fs_count(char *name) uint16_t i; 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 = (struct httpd_fsdata_file_noconst *)f->next) { diff --git a/apps/nshlib/nsh_codeccmd.c b/apps/nshlib/nsh_codeccmd.c index 3576f8c84..6c056b2c5 100644 --- a/apps/nshlib/nsh_codeccmd.c +++ b/apps/nshlib/nsh_codeccmd.c @@ -391,7 +391,7 @@ static int cmd_codecs_proc(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv, MD5Final(mac, &ctx); pSrc = (char *)&mac; 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) & 0x0f]; @@ -427,7 +427,7 @@ static int cmd_codecs_proc(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv, MD5Final(mac, &ctx); pSrc = (char *)&mac; 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) & 0x0f]; diff --git a/apps/nshlib/nsh_netcmds.c b/apps/nshlib/nsh_netcmds.c index ef43fe0f6..7d58ded5d 100644 --- a/apps/nshlib/nsh_netcmds.c +++ b/apps/nshlib/nsh_netcmds.c @@ -619,7 +619,7 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv) if (argc > 2) { - for(i = 0; i < argc; i++) + for (i = 0; i < argc; i++) { if (i == 1) { diff --git a/apps/nshlib/nsh_telnetd.c b/apps/nshlib/nsh_telnetd.c index 9e712cc7b..c77e256a4 100644 --- a/apps/nshlib/nsh_telnetd.c +++ b/apps/nshlib/nsh_telnetd.c @@ -123,7 +123,7 @@ int nsh_telnetlogin(struct console_stdio_s *pstate) /* 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 */ diff --git a/apps/system/readline/readline_common.c b/apps/system/readline/readline_common.c index 7f3806eac..31d28cf42 100644 --- a/apps/system/readline/readline_common.c +++ b/apps/system/readline/readline_common.c @@ -141,7 +141,7 @@ ssize_t readline_common(FAR struct rl_common_s *vtbl, FAR char *buf, int buflen) escape = 0; nch = 0; - for(;;) + for (;;) { /* Get the next character. readline_rawgetc() returns EOF on any * errors or at the end of file. -- cgit v1.2.3