summaryrefslogtreecommitdiff
path: root/tests/lib/test_timer_correctness.c
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 /tests/lib/test_timer_correctness.c
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 'tests/lib/test_timer_correctness.c')
-rw-r--r--tests/lib/test_timer_correctness.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/lib/test_timer_correctness.c b/tests/lib/test_timer_correctness.c
index 1756d87a6f..4172ca3001 100644
--- a/tests/lib/test_timer_correctness.c
+++ b/tests/lib/test_timer_correctness.c
@@ -76,7 +76,7 @@ static void terminate_test(void)
exit(exit_code);
}
-static int timer_func(struct thread *thread)
+static void timer_func(struct thread *thread)
{
int rv;
@@ -90,8 +90,6 @@ static int timer_func(struct thread *thread)
timers_pending--;
if (!timers_pending)
terminate_test();
-
- return 0;
}
static int cmp_timeval(const void *a, const void *b)