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 /ldpd/lde.h | |
| 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 'ldpd/lde.h')
| -rw-r--r-- | ldpd/lde.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ldpd/lde.h b/ldpd/lde.h index dee6f3fcb9..bcb1e1ccaa 100644 --- a/ldpd/lde.h +++ b/ldpd/lde.h @@ -227,7 +227,7 @@ void		 lde_check_withdraw(struct map *, struct lde_nbr *);  void		 lde_check_withdraw_wcard(struct map *, struct lde_nbr *);  int		 lde_wildcard_apply(struct map *, struct fec *,  		    struct lde_map *); -int		 lde_gc_timer(struct thread *); +void lde_gc_timer(struct thread *thread);  void		 lde_gc_start_timer(void);  void		 lde_gc_stop_timer(void);  | 
