net/socket: Missing semicolon in last fstat() change.

This commit is contained in:
Gregory Nutt 2018-04-30 09:57:43 -06:00
parent fd844f8eac
commit d6f9000077
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ int net_fstat(int sockfd, FAR struct stat *buf)
/* We need the length of the IP header */
#if defined(CONFIG_NET_IPv4) && defined(CONFIG_NET_IPv6)
iplen = (conn->domain == PF_INET) ? IPv4_HDRLEN : IPv6_HDRLEN
iplen = (conn->domain == PF_INET) ? IPv4_HDRLEN : IPv6_HDRLEN;
#elif defined(CONFIG_NET_IPv4)
iplen = IPv4_HDRLEN;
#else