examples: wget: Fix nxstyle issues

This commit is contained in:
SPRESENSE 2020-08-07 14:13:56 +09:00 committed by Xiang Xiao
parent 10386cf5b5
commit 78e8090842
2 changed files with 6 additions and 3 deletions

View File

@ -53,7 +53,8 @@
* Preprocessor Definitions * Preprocessor Definitions
****************************************************************************/ ****************************************************************************/
/* Configuration Checks ******************************************************/ /* Configuration Checks *****************************************************/
/* BEWARE: /* BEWARE:
* There are other configuration settings needed in netutitls/wget/wgetc.s, * There are other configuration settings needed in netutitls/wget/wgetc.s,
* but there are default values for those so we cannot check them here. * but there are default values for those so we cannot check them here.
@ -88,6 +89,7 @@ static char g_iobuffer[512];
/**************************************************************************** /****************************************************************************
* Private Functions * Private Functions
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: callback * Name: callback
****************************************************************************/ ****************************************************************************/
@ -114,7 +116,7 @@ int main(int argc, FAR char *argv[])
uint8_t mac[IFHWADDRLEN]; uint8_t mac[IFHWADDRLEN];
#endif #endif
/* Many embedded network interfaces must have a software assigned MAC */ /* Many embedded network interfaces must have a software assigned MAC */
#ifdef CONFIG_EXAMPLES_WGET_NOMAC #ifdef CONFIG_EXAMPLES_WGET_NOMAC
mac[0] = 0x00; mac[0] = 0x00;

View File

@ -666,9 +666,10 @@ static int wget_base(FAR const char *url, FAR char *buffer, int buflen,
nerr("ERROR: send failed: %d\n", errno); nerr("ERROR: send failed: %d\n", errno);
goto errout; goto errout;
} }
len -= ret; len -= ret;
} }
while(len > 0); while (len > 0);
/* Now loop to get the file sent in response to the GET. This /* Now loop to get the file sent in response to the GET. This
* loop continues until either we read the end of file (nbytes == 0) * loop continues until either we read the end of file (nbytes == 0)