From 694bd4ce201caa71fec4e82847cd90dcd5140c01 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Wed, 1 May 2019 19:29:24 +0000 Subject: [PATCH] zebra: suppress unused variable warning Signed-off-by: Quentin Young --- zebra/zebra_vxlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index 525ead5a0d..baa050c9b9 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -7858,7 +7858,7 @@ void zebra_vxlan_remote_vtep_del(ZAPI_HANDLER_ARGS) s = msg; while (l < hdr->length) { - int flood_control; + int flood_control __attribute__((unused)); /* Obtain each remote VTEP and process. */ STREAM_GETL(s, vni);