Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Directly returns the newly created condition.
[simgrid.git] / src / xbt / xbt_rl_synchro.c
index ad230a7..abd6e96 100644 (file)
@@ -132,7 +132,7 @@ typedef struct xbt_cond_ {
 xbt_cond_t xbt_cond_init(void) {
    xbt_cond_t res = (xbt_cond_t) xbt_os_cond_init();
    DEBUG1("Create cond %p", res);
-   return (xbt_cond_t) xbt_os_cond_init();
+   return res;
 }
 
 void xbt_cond_wait(xbt_cond_t cond, xbt_mutex_t mutex) {