Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics. Rename model for type into storage tag.
[simgrid.git] / examples / xbt / sem_sched.c
index eb018c7..64a6bf1 100644 (file)
@@ -394,7 +394,7 @@ int job_execute(job_t job)
   if (!job)
     return EINVAL;
 
-  return (*(job->func)) (job->argc, job->argv);
+  return job->func(job->argc, job->argv);
 }
 
 int job_free(job_t * ref)