summaryrefslogtreecommitdiff
path: root/nuttx/libc/net
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-12 13:28:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-12 13:28:22 -0600
commit74a4eb6d1612d63958e14a240cc526c9be8041e0 (patch)
tree90ff9923b46383e6ea4e5ec0f162608fda1820fa /nuttx/libc/net
parent5d99549aca261d40abf3e0d7180c2bddca3522b3 (diff)
downloadpx4-nuttx-74a4eb6d1612d63958e14a240cc526c9be8041e0.tar.gz
px4-nuttx-74a4eb6d1612d63958e14a240cc526c9be8041e0.tar.bz2
px4-nuttx-74a4eb6d1612d63958e14a240cc526c9be8041e0.zip
Make sure that there is one space after for
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++];