From 346981a7c29cd9c9c9da70f1e0b60134a86072e0 Mon Sep 17 00:00:00 2001 From: Patty8122 Date: Fri, 22 Sep 2023 16:10:13 -0500 Subject: [PATCH] test: corrected control reaches end by adding a return Signed-off-by: Patty8122 --- src/test/TestTimers.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/TestTimers.cc b/src/test/TestTimers.cc index a561f8f509779..267ce5444ea4f 100644 --- a/src/test/TestTimers.cc +++ b/src/test/TestTimers.cc @@ -308,6 +308,8 @@ static int safe_timer_loop_test(SafeTimer &safe_timer, << std::endl; return -1; } + + return 0; } int main(int argc, const char **argv) -- 2.39.5