From b2608623176634e0d9b383f7a91b6f4b05bcca1e Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 31 May 2018 20:45:49 -0400 Subject: [PATCH] ripd: Intentionally ignore return from rip_send_packet Coverity SA has noticed that we are not ignoring the return codes from rip_send_packet in one case. Since we do not care let the system know we don't. Signed-off-by: Donald Sharp --- ripd/ripd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ripd/ripd.c b/ripd/ripd.c index ecc4027008..92c27106d5 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -1641,7 +1641,7 @@ static void rip_request_process(struct rip_packet *packet, int size, } packet->command = RIP_RESPONSE; - rip_send_packet((uint8_t *)packet, size, from, ifc); + (void)rip_send_packet((uint8_t *)packet, size, from, ifc); } rip_global_queries++; } -- 2.39.5