netutils/netlib: Eliminate a warning

This commit is contained in:
Gregory Nutt 2017-08-05 09:27:11 -06:00
parent 0c34ebb72f
commit ea95f710db

@ -145,7 +145,8 @@ bool netlib_nodeaddrconv(FAR const char *addrstr,
{
/* Get the next byte in binary form */
ret = get_byte(addrstr, &byte);
byte = 0; /* Eliminates a warning */
ret = get_byte(addrstr, &byte);
if (ret < 0)
{
wlwarn("get_byte failed: %s\n", addrstr);