From: Igor Putovny Date: Fri, 11 Oct 2024 12:40:35 +0000 (+0200) Subject: Silence unused variable warning X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ce05e4e240e414102a6b2c71b59816e023cdea3;p=thirdparty%2Fbird.git Silence unused variable warning --- diff --git a/proto/aggregator/aggregator.c b/proto/aggregator/aggregator.c index 9a00b579b..5b56d5b2e 100644 --- a/proto/aggregator/aggregator.c +++ b/proto/aggregator/aggregator.c @@ -1910,7 +1910,7 @@ aggregator_start(struct proto *P) } static int -aggregator_shutdown(struct proto *P) +aggregator_shutdown(struct proto *P UNUSED) { return PS_DOWN; }