Code style fixes

This commit is contained in:
lebrush 2013-05-21 09:05:30 +02:00
parent 9158ff4bf1
commit 2fb007b1e0
2 changed files with 3 additions and 3 deletions

View File

@ -876,8 +876,8 @@ uip_ds6_compute_reachable_time(void)
UIP_ND6_MIN_RANDOM_FACTOR(uip_ds6_if.base_reachable_time)); UIP_ND6_MIN_RANDOM_FACTOR(uip_ds6_if.base_reachable_time));
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
uip_ds6_nbr_t* uip_ds6_nbr_t *
uip_ds6_get_least_lifetime_neighbor() uip_ds6_get_least_lifetime_neighbor(void)
{ {
uip_ds6_nbr_t *nbr_expiring = NULL; uip_ds6_nbr_t *nbr_expiring = NULL;
uint8_t i; uint8_t i;

View File

@ -380,6 +380,6 @@ uint32_t uip_ds6_compute_reachable_time(void); /** \brief compute random reachab
* A reference to the neighbor about to expire the next or NULL if * A reference to the neighbor about to expire the next or NULL if
* table is empty. * table is empty.
*/ */
uip_ds6_nbr_t *uip_ds6_get_least_lifetime_neighbor(); uip_ds6_nbr_t *uip_ds6_get_least_lifetime_neighbor(void);
#endif /* __UIP_DS6_H__ */ #endif /* __UIP_DS6_H__ */