summaryrefslogtreecommitdiff
path: root/sharpd
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2022-02-22 19:04:25 -0500
committerDonald Sharp <sharpd@nvidia.com>2022-02-23 19:56:04 -0500
commitcc9f21da2218d95567eff1501482ce58e6600f54 (patch)
treed579c9754161d874bad6eb09c67821b65fb559ca /sharpd
parenteaba619fc183f68a456b3918f449185b3b477426 (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 'sharpd')
-rw-r--r--sharpd/sharp_logpump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sharpd/sharp_logpump.c b/sharpd/sharp_logpump.c
index 322d802b8a..ad1051f224 100644
--- a/sharpd/sharp_logpump.c
+++ b/sharpd/sharp_logpump.c
@@ -43,7 +43,7 @@ static struct vty *lp_vty;
extern struct thread_master *master;
-static int logpump_done(struct thread *thread)
+static void logpump_done(struct thread *thread)
{
double x;
@@ -67,7 +67,6 @@ static int logpump_done(struct thread *thread)
frr_pthread_stop(lpt, NULL);
frr_pthread_destroy(lpt);
lpt = NULL;
- return 0;
}
static void *logpump_run(void *arg)