Small style fixes

This commit is contained in:
adamdunkels 2010-10-24 21:05:42 +00:00
parent 7f95059703
commit 8f8741c7f0

View File

@ -29,7 +29,7 @@
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* *
* $Id: tcpip.c,v 1.28 2010/05/01 13:04:31 joxe Exp $ * $Id: tcpip.c,v 1.29 2010/10/24 21:05:42 adamdunkels Exp $
*/ */
/** /**
* \file * \file
@ -551,8 +551,9 @@ tcpip_ipv6_output(void)
uip_ds6_nbr_t *nbr = NULL; uip_ds6_nbr_t *nbr = NULL;
uip_ipaddr_t* nexthop; uip_ipaddr_t* nexthop;
if(uip_len == 0) if(uip_len == 0) {
return; return;
}
if(uip_len > UIP_LINK_MTU) { if(uip_len > UIP_LINK_MTU) {
UIP_LOG("tcpip_ipv6_output: Packet to big"); UIP_LOG("tcpip_ipv6_output: Packet to big");