Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the return keyword at the end of the void function.
authorcherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 22 Oct 2007 08:55:32 +0000 (08:55 +0000)
committercherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 22 Oct 2007 08:55:32 +0000 (08:55 +0000)
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

index 34dde86..35bd11d 100644 (file)
@@ -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);
 }