RPL: fix indentation (rpl-icmp6.c)

This commit is contained in:
Yasuyuki Tanaka 2017-02-07 23:11:36 +01:00
parent e9ee15efde
commit b7b23b712f

View file

@ -158,8 +158,8 @@ get_global_addr(uip_ipaddr_t *addr)
static uint32_t static uint32_t
get32(uint8_t *buffer, int pos) get32(uint8_t *buffer, int pos)
{ {
return (uint32_t)buffer[pos] << 24 | (uint32_t)buffer[pos + 1] << 16 | return ((uint32_t)buffer[pos] << 24 | (uint32_t)buffer[pos + 1] << 16 |
(uint32_t)buffer[pos + 2] << 8 | buffer[pos + 3]; (uint32_t)buffer[pos + 2] << 8 | buffer[pos + 3]);
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static void static void
@ -202,7 +202,7 @@ rpl_icmp6_update_nbr_table(uip_ipaddr_t *from, nbr_table_reason_t reason, void *
} }
return nbr; return nbr;
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static void static void
dis_input(void) dis_input(void)
@ -461,7 +461,7 @@ dio_input(void)
rpl_process_dio(&from, &dio); rpl_process_dio(&from, &dio);
discard: discard:
uip_clear_buf(); uip_clear_buf();
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
@ -1017,7 +1017,7 @@ dao_input(void)
dao_input_nonstoring(); dao_input_nonstoring();
} }
discard: discard:
uip_clear_buf(); uip_clear_buf();
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/