Make sure that there is one space between if and condition
This commit is contained in:
parent
638fad2d36
commit
17702dbad2
@ -82,7 +82,7 @@ bool uiplib_ipaddrconv(const char *addrstr, uint8_t *ipaddr)
|
|||||||
++ipaddr;
|
++ipaddr;
|
||||||
tmp = 0;
|
tmp = 0;
|
||||||
}
|
}
|
||||||
else if(c >= '0' && c <= '9')
|
else if (c >= '0' && c <= '9')
|
||||||
{
|
{
|
||||||
tmp = (tmp * 10) + (c - '0');
|
tmp = (tmp * 10) + (c - '0');
|
||||||
}
|
}
|
||||||
@ -130,15 +130,15 @@ bool uiplib_hwmacconv(const char *hwstr, uint8_t *hw)
|
|||||||
++hw;
|
++hw;
|
||||||
tmp = 0;
|
tmp = 0;
|
||||||
}
|
}
|
||||||
else if(c >= '0' && c <= '9')
|
else if (c >= '0' && c <= '9')
|
||||||
{
|
{
|
||||||
tmp = (tmp << 4) + (c - '0');
|
tmp = (tmp << 4) + (c - '0');
|
||||||
}
|
}
|
||||||
else if(c >= 'a' && c <= 'f')
|
else if (c >= 'a' && c <= 'f')
|
||||||
{
|
{
|
||||||
tmp = (tmp << 4) + (c - 'a' + 10);
|
tmp = (tmp << 4) + (c - 'a' + 10);
|
||||||
}
|
}
|
||||||
else if(c >= 'A' && c <= 'F')
|
else if (c >= 'A' && c <= 'F')
|
||||||
{
|
{
|
||||||
tmp = (tmp << 4) + (c - 'A' + 10);
|
tmp = (tmp << 4) + (c - 'A' + 10);
|
||||||
}
|
}
|
||||||
@ -151,5 +151,6 @@ bool uiplib_hwmacconv(const char *hwstr, uint8_t *hw)
|
|||||||
}
|
}
|
||||||
while(c != ':' && c != 0);
|
while(c != ':' && c != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -348,7 +348,7 @@ static int cmd_codecs_proc(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv,
|
|||||||
ret = ERROR;
|
ret = ERROR;
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
else if(ret==0)
|
else if (ret==0)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -644,7 +644,7 @@ int cmd_ifconfig(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
badarg = true;
|
badarg = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(!strcmp(tmp, "netmask"))
|
else if (!strcmp(tmp, "netmask"))
|
||||||
{
|
{
|
||||||
if (argc-1 >= i+1)
|
if (argc-1 >= i+1)
|
||||||
{
|
{
|
||||||
|
@ -118,7 +118,7 @@ static int install_getstartpage(int startpage, int pagemargin, int desiredsize)
|
|||||||
maxlen = 0;
|
maxlen = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(stpage < startpage)
|
if (stpage < startpage)
|
||||||
{
|
{
|
||||||
stpage = startpage;
|
stpage = startpage;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user