From c59e69a4309b7930efb62d6c239f120276621f11 Mon Sep 17 00:00:00 2001 From: cherierm Date: Mon, 22 Oct 2007 08:55:32 +0000 Subject: [PATCH] Remove the return keyword at the end of the void function. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4840 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/xbt_rl_time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xbt/xbt_rl_time.c b/src/xbt/xbt_rl_time.c index 34dde86bb6..35bd11daa1 100644 --- a/src/xbt/xbt_rl_time.c +++ b/src/xbt/xbt_rl_time.c @@ -21,5 +21,5 @@ double xbt_time(void) { return xbt_os_time(); } void xbt_sleep(double sec) { - return xbt_os_sleep(sec); + xbt_os_sleep(sec); } -- 2.20.1