Skip to content
Snippets Groups Projects
Commit 6ce82ce8 authored by Jan Kadlec's avatar Jan Kadlec
Browse files

new_node: Fixed clang build.

parent 362a84cc
No related branches found
No related tags found
No related merge requests found
......@@ -395,7 +395,7 @@ bool knot_node_rrtype_exists(const knot_node_t *node, uint16_t type);
static inline knot_rrset_t knot_node_rrset(const knot_node_t *node, uint16_t type)
{
knot_rrset_t rrset;
for (uint i = 0; node && i < node->rrset_count; ++i) {
for (uint16_t i = 0; node && i < node->rrset_count; ++i) {
if (node->rrs[i].type == type) {
struct rr_data *rr_data = &node->rrs[i];
rrset.owner = node->owner;
......
......@@ -717,8 +717,8 @@ int knot_rrset_merge(knot_rrset_t *rrset1, const knot_rrset_t *rrset2,
return knot_rrs_merge(&rrset1->rrs, &rrset2->rrs, mm);
}
static uint16_t find_rr_pos(const knot_rrset_t *rr_search_in,
const knot_rrset_t *rr_reference, size_t pos)
static int find_rr_pos(const knot_rrset_t *rr_search_in,
const knot_rrset_t *rr_reference, size_t pos)
{
bool found = false;
uint16_t rr_count = knot_rrset_rr_count(rr_search_in);
......@@ -741,7 +741,7 @@ static int knot_rrset_remove_rr(knot_rrset_t *rrset,
* Position in first and second rrset can differ, we have
* to search for position first.
*/
uint16_t pos_to_remove = find_rr_pos(rrset, rr_from, rdata_pos);
int pos_to_remove = find_rr_pos(rrset, rr_from, rdata_pos);
if (pos_to_remove >= 0) {
/* Position found, can be removed. */
return knot_rrs_remove_rr_at_pos(&rrset->rrs, pos_to_remove, mm);
......
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