Fix a typo introduced in the last commit

This commit is contained in:
Gregory Nutt 2015-01-21 10:31:18 -06:00
parent 3202819328
commit 354bc626ab
1 changed files with 1 additions and 1 deletions

View File

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