ソースを参照

src/core/workers.c: gordon_func is not a pointer, but a uint8_t

Nathalie Furmento 14 年 前
コミット
42b0dcc879
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      src/core/workers.c

+ 1 - 1
src/core/workers.c

@@ -83,7 +83,7 @@ static int _starpu_may_use_nth_implementation(enum starpu_archtype arch, struct
 			cl->opencl_funcs[nimpl] == NULL);
 	case STARPU_GORDON_WORKER:
 		return !(cl->gordon_func == STARPU_MULTIPLE_GORDON_IMPLEMENTATIONS &&
-			cl->gordon_funcs[nimpl] == NULL);
+			cl->gordon_funcs[nimpl] == 0);
 	default:
 		return 0;
 	}