From: Ralph Dolmans Date: Thu, 16 Jul 2020 10:31:30 +0000 (+0200) Subject: Change unbound-dnstap-socket void cast for unused parameter X-Git-Tag: release-1.11.0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b953cd9aa045a009d3d4ddaeb6d45ac908c70596;p=thirdparty%2Funbound.git Change unbound-dnstap-socket void cast for unused parameter --- diff --git a/dnstap/unbound-dnstap-socket.c b/dnstap/unbound-dnstap-socket.c index d530b9a89..44a0eda95 100644 --- a/dnstap/unbound-dnstap-socket.c +++ b/dnstap/unbound-dnstap-socket.c @@ -815,7 +815,7 @@ static int reply_with_accept(struct tap_data* data) return 1; #else log_err("no dnstap compiled, no reply"); - (void)fd; + (void)data; return 0; #endif }