This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
commit 6b00c37a653f9f7c07380399d0b91005fa85f906 Author: YAMAMOTO Takashi <[email protected]> AuthorDate: Mon May 25 23:34:32 2020 +0900 dhcpc.c: Fix an nxstyle complaint --- netutils/dhcpc/dhcpc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/netutils/dhcpc/dhcpc.c b/netutils/dhcpc/dhcpc.c index cdb571a..083187e 100644 --- a/netutils/dhcpc/dhcpc.c +++ b/netutils/dhcpc/dhcpc.c @@ -529,7 +529,9 @@ int dhcpc_request(FAR void *handle, FAR struct dhcpc_state *presult) newaddr.s_addr = INADDR_ANY; netlib_set_ipv4addr(pdhcpc->interface, &newaddr); - /* Loop sending the DISCOVER up to CONFIG_NETUTILS_DHCPC_RETRIES times */ + /* Loop sending the DISCOVER up to CONFIG_NETUTILS_DHCPC_RETRIES + * times + */ retries = 0;
