Explorar el Código

src/core/perfmodel/perfmodel_history.c: fix type for variable handle

Nathalie Furmento hace 14 años
padre
commit
b98e434d3b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/core/perfmodel/perfmodel_history.c

+ 1 - 1
src/core/perfmodel/perfmodel_history.c

@@ -986,7 +986,7 @@ void _starpu_update_perfmodel_history(starpu_job_t j, struct starpu_perfmodel_t
 			
 		for (i = 0; i < task->cl->nbuffers; i++)
 		{
-			struct starpu_data_handle_t *handle = task->buffers[i].handle;
+			starpu_data_handle handle = task->buffers[i].handle;
 
 			STARPU_ASSERT(handle->ops);
 			STARPU_ASSERT(handle->ops->display);