Compilation targeting c64
Adds some casts required by cc65 compiler and small fixes
This commit is contained in:
parent
8e6c6cc45b
commit
c2a0f739f7
5 changed files with 20 additions and 3 deletions
|
@ -662,7 +662,8 @@ rs_input(void)
|
|||
}
|
||||
if(memcmp(&nd6_opt_llao[UIP_ND6_OPT_DATA_OFFSET],
|
||||
lladdr, UIP_LLADDR_LEN) != 0) {
|
||||
uip_ds6_nbr_t nbr_data = *nbr;
|
||||
uip_ds6_nbr_t nbr_data;
|
||||
nbr_data = *nbr;
|
||||
uip_ds6_nbr_rm(nbr);
|
||||
nbr = uip_ds6_nbr_add(&UIP_IP_BUF->srcipaddr, &lladdr_aligned,
|
||||
0, NBR_STALE, NBR_TABLE_REASON_IPV6_ND, NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue