More typos in debug statements

This commit is contained in:
Gregory Nutt 2015-01-21 10:32:59 -06:00
parent 354bc626ab
commit 5e23a855ec
1 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ static inline void tcp_ipv4_sendcomplete(FAR struct net_driver_s *dev,
ipv4->ipchksum = 0; ipv4->ipchksum = 0;
ipv4->ipchksum = ~ipv4_chksum(dev); ipv4->ipchksum = ~ipv4_chksum(dev);
nllvdbg("IPv4 length: %d\n", ((int)ipv4->len << 8) + ipv4->len[1]); nllvdbg("IPv4 length: %d\n", ((int)ipv4->len[0] << 8) + ipv4->len[1]);
} }
#endif /* CONFIG_NET_IPv4 */ #endif /* CONFIG_NET_IPv4 */
@ -229,7 +229,7 @@ static inline void tcp_ipv6_sendcomplete(FAR struct net_driver_s *dev,
ipv6->tcf = 0x00; ipv6->tcf = 0x00;
ipv6->flow = 0x00; ipv6->flow = 0x00;
nllvdbg("IPv6 length: %d\n", ((int)ipv6->len << 8) + ipv6->len[1]); nllvdbg("IPv6 length: %d\n", ((int)ipv6->len[0] << 8) + ipv6->len[1]);
} }
#endif /* CONFIG_NET_IPv6 */ #endif /* CONFIG_NET_IPv6 */