From 9907018c352fb561689dfb8e943f38e3ae862ea2 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 13 Jun 2011 16:06:52 -0400 Subject: [PATCH] Fix test warning Patch from: https://build.opensuse.org/package/view_file?file=liburcu0-cleanup.patch&package=liburcu0&project=devel%3Atools%3Alttng&srcmd5=fa3ab9fae0401b4c0f73a9cf474eea16 fixes a warning in the liburcu tests. Reported-by: Yannick Brosseau Signed-off-by: Mathieu Desnoyers --- tests/test_cycles_per_loop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_cycles_per_loop.c b/tests/test_cycles_per_loop.c index 05a6ea7..cafa309 100644 --- a/tests/test_cycles_per_loop.c +++ b/tests/test_cycles_per_loop.c @@ -18,4 +18,5 @@ int main() time2 = caa_get_cycles(); printf("CPU clock cycles per loop: %g\n", (time2 - time1) / (double)NR_LOOPS); + return 0; } -- 2.34.1