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

This commit is contained in:
nvt 2011-09-05 22:05:41 +02:00
parent 84105f4e47
commit 942ba1f7bd
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}

View file

@ -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__ */
/** @} */