Minor code style fixes

This commit is contained in:
Adam Dunkels 2013-10-05 11:25:58 +02:00 committed by George Oikonomou
parent 55f1f01a98
commit d397e97e74
2 changed files with 7 additions and 7 deletions

View File

@ -72,7 +72,7 @@ PROCESS(rpl_root_process, "RPL ROOT, Multicast Sender");
AUTOSTART_PROCESSES(&rpl_root_process);
/*---------------------------------------------------------------------------*/
static void
multicast_send()
multicast_send(void)
{
uint32_t id;
@ -91,7 +91,7 @@ multicast_send()
}
/*---------------------------------------------------------------------------*/
static void
prepare_mcast()
prepare_mcast(void)
{
uip_ipaddr_t ipaddr;
@ -104,7 +104,7 @@ prepare_mcast()
}
/*---------------------------------------------------------------------------*/
static void
set_own_addresses()
set_own_addresses(void)
{
int i;
uint8_t state;

View File

@ -78,7 +78,7 @@ tcpip_handler(void)
}
/*---------------------------------------------------------------------------*/
static uip_ds6_maddr_t *
join_mcast_group()
join_mcast_group(void)
{
uip_ipaddr_t addr;
uip_ds6_maddr_t *rv;