Skip to content
Snippets Groups Projects
Commit 942ba1f7 authored by nvt's avatar nvt
Browse files

Removed const qualifier to conform with the rest of the Rime interface.

parent 84105f4e
No related branches found
No related tags found
No related merge requests found
......@@ -149,7 +149,7 @@ multihop_send(struct multihop_conn *c, const rimeaddr_t *to)
}
/*---------------------------------------------------------------------------*/
void
multihop_resend(const struct multihop_conn *const c, const rimeaddr_t *const nexthop)
multihop_resend(struct multihop_conn *c, const rimeaddr_t *nexthop)
{
unicast_send(&c->c, nexthop);
}
......
......@@ -104,7 +104,7 @@ void multihop_open(struct multihop_conn *c, uint16_t channel,
const struct multihop_callbacks *u);
void multihop_close(struct multihop_conn *c);
int multihop_send(struct multihop_conn *c, const rimeaddr_t *to);
void multihop_resend(const struct multihop_conn *const c, const rimeaddr_t *const nexthop);
void multihop_resend(struct multihop_conn *c, const rimeaddr_t *nexthop);
#endif /* __MULTIHOP_H__ */
/** @} */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment