From: Patty8122 Date: Fri, 22 Sep 2023 21:10:13 +0000 (-0500) Subject: test: corrected control reaches end by adding a return X-Git-Tag: v19.0.0~377^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=346981a7c29cd9c9c9da70f1e0b60134a86072e0;p=ceph.git test: corrected control reaches end by adding a return Signed-off-by: Patty8122 --- 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)