From 66bff64b532dfd6d41083e7f7c65db1a7ba5bb58 Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Sun, 11 Sep 2011 21:52:27 +0000 Subject: [PATCH] Suppress lint whining --- dnssec_sign.c | 3 ++- host2str.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dnssec_sign.c b/dnssec_sign.c index 403831f5..8e65d226 100644 --- a/dnssec_sign.c +++ b/dnssec_sign.c @@ -847,7 +847,8 @@ ldns_dnssec_zone_create_nsec3s_mkmap(ldns_dnssec_zone *zone, ldns_rr_owner(nsec_rr), 0); if (hashmap_node->key) { hashmap_node->data = current_name->name; - ldns_rbtree_insert(*map, hashmap_node); + (void) ldns_rbtree_insert( + *map, hashmap_node); } } } diff --git a/host2str.c b/host2str.c index a8f9f6ce..bf7fc555 100644 --- a/host2str.c +++ b/host2str.c @@ -1319,6 +1319,7 @@ ldns_rr2buffer_str_fmt(ldns_buffer *output, ldns_buffer_printf( output, " from: "); + (void) ldns_rdf2buffer_str( output, (ldns_rdf *) @@ -1337,6 +1338,7 @@ ldns_rr2buffer_str_fmt(ldns_buffer *output, ldns_buffer_printf( output, " to: "); + (void) ldns_rdf2buffer_str( output, (ldns_rdf *) -- 2.47.3