소스 검색

Fix cast.

Cyril Roelandt 13 년 전
부모
커밋
4fb9bb3314
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/filters/custom_mf/custom_interface.c

+ 1 - 1
examples/filters/custom_mf/custom_interface.c

@@ -82,7 +82,7 @@ static struct starpu_multiformat_data_interface_ops*
 get_mf_ops(void *data_interface)
 {
 	struct custom_data_interface *custom;
-	custom = (struct starpu_multiformat_interface *) data_interface;
+	custom = (struct custom_data_interface *) data_interface;
 
 	return custom->ops;
 }