summaryrefslogtreecommitdiff
path: root/nuttx/libc/net
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/libc/net')
-rw-r--r--nuttx/libc/net/lib_inetpton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/libc/net/lib_inetpton.c b/nuttx/libc/net/lib_inetpton.c
index c5f117535..a0eca934b 100644
--- a/nuttx/libc/net/lib_inetpton.c
+++ b/nuttx/libc/net/lib_inetpton.c
@@ -133,7 +133,7 @@ int inet_pton(int af, FAR const char *src, FAR void *dst)
numoffset = 0;
ndots = 0;
- for(;;)
+ for (;;)
{
ch = (uint8_t)src[srcoffset++];
@@ -231,7 +231,7 @@ int inet_pton(int af, FAR const char *src, FAR void *dst)
nrsep = 0;
rtime = false;
- for(;;)
+ for (;;)
{
ch = (uint8_t)src[srcoffset++];