Skip to content
Snippets Groups Projects
Commit 58a6f4d0 authored by Lubos Slovak's avatar Lubos Slovak
Browse files

RRSet rotat does not return value

parent 2946531f
No related branches found
No related tags found
No related merge requests found
......@@ -625,7 +625,7 @@ int knot_rrset_shallow_copy(const knot_rrset_t *from, knot_rrset_t **to)
/*----------------------------------------------------------------------------*/
int knot_rrset_rotate(knot_rrset_t *rrset)
void knot_rrset_rotate(knot_rrset_t *rrset)
{
rrset->rdata = rrset->rdata->next;
}
......
......@@ -260,7 +260,7 @@ int knot_rrset_shallow_copy(const knot_rrset_t *from, knot_rrset_t **to);
* may rotate twice, or not rotate at all. This is not a big issue though.
* In future we may replace this with some per-thread counter.
*/
int knot_rrset_rotate(knot_rrset_t *rrset);
void knot_rrset_rotate(knot_rrset_t *rrset);
/*!
* \brief Destroys the RRSet structure.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment