diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2024-01-05 12:57:06 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2024-01-09 13:03:43 -0500 | 
| commit | be80dbc826e47429d09c502e681a9f72b457a551 (patch) | |
| tree | e563e47dc84d2af1f04320f3c8cb90d73f633b8c /pimd/pim_upstream.c | |
| parent | e92a7e9c147cbac94aae44bb81f245bf99220a11 (diff) | |
pimd: Cleanup SA issue with value never used
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'pimd/pim_upstream.c')
| -rw-r--r-- | pimd/pim_upstream.c | 2 | 
1 files changed, 1 insertions, 1 deletions
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);  		}  | 
