diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-02-22 19:04:25 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-02-23 19:56:04 -0500 | 
| commit | cc9f21da2218d95567eff1501482ce58e6600f54 (patch) | |
| tree | d579c9754161d874bad6eb09c67821b65fb559ca /isisd/isis_dr.c | |
| parent | eaba619fc183f68a456b3918f449185b3b477426 (diff) | |
*: Change thread->func to return void instead of int
The int return value is never used.  Modify the code
base to just return a void instead.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'isisd/isis_dr.c')
| -rw-r--r-- | isisd/isis_dr.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/isisd/isis_dr.c b/isisd/isis_dr.c index e09e23aaeb..78197974d7 100644 --- a/isisd/isis_dr.c +++ b/isisd/isis_dr.c @@ -61,7 +61,7 @@ const char *isis_disflag2string(int disflag)  	return NULL; /* not reached */  } -int isis_run_dr(struct thread *thread) +void isis_run_dr(struct thread *thread)  {  	struct isis_circuit_arg *arg = THREAD_ARG(thread); @@ -76,7 +76,7 @@ int isis_run_dr(struct thread *thread)  		zlog_warn("%s: scheduled for non broadcast circuit from %s:%d",  			  __func__, thread->xref->xref.file,  			  thread->xref->xref.line); -		return ISIS_WARNING; +		return;  	}  	if (circuit->u.bc.run_dr_elect[level - 1]) @@ -84,8 +84,6 @@ int isis_run_dr(struct thread *thread)  	circuit->u.bc.t_run_dr[level - 1] = NULL;  	circuit->u.bc.run_dr_elect[level - 1] = 1; - -	return ISIS_OK;  }  static int isis_check_dr_change(struct isis_adjacency *adj, int level)  | 
