Small style fixes

This commit is contained in:
adamdunkels 2010-10-24 21:05:42 +00:00
parent 7f95059703
commit 8f8741c7f0
1 changed files with 8 additions and 7 deletions

View File

@ -29,7 +29,7 @@
* 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
@ -551,8 +551,9 @@ tcpip_ipv6_output(void)
uip_ds6_nbr_t *nbr = NULL;
uip_ipaddr_t* nexthop;
if(uip_len == 0)
if(uip_len == 0) {
return;
}
if(uip_len > UIP_LINK_MTU) {
UIP_LOG("tcpip_ipv6_output: Packet to big");