Przeglądaj źródła

remove spurious spaces

Corentin Salingue 9 lat temu
rodzic
commit
ea791358b5
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      examples/mlr/mlr.c

+ 2 - 2
examples/mlr/mlr.c

@@ -119,14 +119,14 @@ static struct starpu_perfmodel cl_model_final = {
 
 static struct starpu_codelet cl_init = {
 	.cpu_funcs = { cpu_func },
-	.cpu_funcs_name = { "cpu_func " },
+	.cpu_funcs_name = { "cpu_func" },
 	.nbuffers = 0,
 	.model = &cl_model_init,
 };
 
 static struct starpu_codelet cl_final = {
 	.cpu_funcs = { cpu_func },
-	.cpu_funcs_name = { "cpu_func " },
+	.cpu_funcs_name = { "cpu_func" },
 	.nbuffers = 0,
 	.model = &cl_model_final,
 };