From b953cd9aa045a009d3d4ddaeb6d45ac908c70596 Mon Sep 17 00:00:00 2001 From: Ralph Dolmans Date: Thu, 16 Jul 2020 12:31:30 +0200 Subject: [PATCH] Change unbound-dnstap-socket void cast for unused parameter --- dnstap/unbound-dnstap-socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }