Browse Source

Fix typo.

Cyril Roelandt 13 years ago
parent
commit
9bc7b3daaf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      socl/src/task.c

+ 1 - 1
socl/src/task.c

@@ -129,7 +129,7 @@ static void cputask_task(__attribute__((unused)) void *descr[], void *args) {
 static struct starpu_codelet cputask_codelet = {
 static struct starpu_codelet cputask_codelet = {
    .where = STARPU_CPU,
    .where = STARPU_CPU,
    .model = NULL,
    .model = NULL,
-   .cpu_funcs = { &cputask_task, NULL },
+   .cpu_funcs = { &cputask_task, NULL }
 };
 };
 
 
 starpu_task task_create_cpu(void (*callback)(void*), void *arg, int free_arg) {
 starpu_task task_create_cpu(void (*callback)(void*), void *arg, int free_arg) {