mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys/net/rpl: fix missing assignment operator
GNRC_RPL_COUNTER_INCREMENT has no external side effects.
This commit is contained in:
parent
5d32c95c16
commit
4fc1c25082
@ -1096,7 +1096,7 @@ void gnrc_rpl_send_DAO(gnrc_rpl_instance_t *inst, ipv6_addr_t *destination, uint
|
||||
|
||||
gnrc_rpl_send(pkt, dodag->iface, NULL, destination, &dodag->dodag_id);
|
||||
|
||||
GNRC_RPL_COUNTER_INCREMENT(dodag->dao_seq);
|
||||
dodag->dao_seq = GNRC_RPL_COUNTER_INCREMENT(dodag->dao_seq);
|
||||
}
|
||||
|
||||
void gnrc_rpl_send_DAO_ACK(gnrc_rpl_instance_t *inst, ipv6_addr_t *destination, uint8_t seq)
|
||||
|
Loading…
Reference in New Issue
Block a user