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 /zebra/main.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 'zebra/main.c')
| -rw-r--r-- | zebra/main.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/main.c b/zebra/main.c index 079751af0a..9deafb532e 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -213,7 +213,7 @@ static void sigint(void)   * Final shutdown step for the zebra main thread. This is run after all   * async update processing has completed.   */ -int zebra_finalize(struct thread *dummy) +void zebra_finalize(struct thread *dummy)  {  	zlog_info("Zebra final shutdown");  | 
