From: Donald Sharp Date: Fri, 5 Jan 2024 17:57:06 +0000 (-0500) Subject: pimd: Cleanup SA issue with value never used X-Git-Tag: base_10.0~135^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=be80dbc826e47429d09c502e681a9f72b457a551;p=mirror%2Ffrr.git pimd: Cleanup SA issue with value never used Signed-off-by: Donald Sharp --- diff --git a/pimd/pim_upstream.c b/pimd/pim_upstream.c index 335c8a454b..45c4df0e7e 100644 --- a/pimd/pim_upstream.c +++ b/pimd/pim_upstream.c @@ -909,7 +909,7 @@ static struct pim_upstream *pim_upstream_new(struct pim_instance *pim, * Set the right RPF so that future changes will * be right */ - rpf_result = pim_rpf_update(pim, up, NULL, __func__); + (void)pim_rpf_update(pim, up, NULL, __func__); pim_upstream_keep_alive_timer_start( up, pim->keep_alive_time); }