소스 검색

src/core/workers.c: starpu_gordon_func_t is a int type not a pointer

Nathalie Furmento 13 년 전
부모
커밋
6a62eae9fb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/workers.c

+ 1 - 1
src/core/workers.c

@@ -91,7 +91,7 @@ static int _starpu_can_use_nth_implementation(enum starpu_archtype arch, struct
 	case STARPU_GORDON_WORKER:
 	{
 		starpu_gordon_func_t func = _starpu_task_get_gordon_nth_implementation(cl, nimpl);
-		return func != NULL;
+		return func != 0;
 	}
 	default:
 		STARPU_ASSERT(!"Unknown arch type");