--- trunk/test/probe/probe.c 2010/08/17 18:35:35 309 +++ trunk/test/probe/probe.c 2010/08/17 18:52:00 310 @@ -385,8 +385,9 @@ program = clCreateProgramWithSource(context,1,(const char **)&kernel_source,NULL,&err); assert(err == CL_SUCCESS); - - err = clBuildProgram(program, 0, NULL, NULL,NULL, NULL); + + const char *options = 0; + err = clBuildProgram(program, 0, NULL, options, NULL, NULL); /** Retrieve information about the program build to check for any possible errors **/ @@ -404,7 +405,7 @@ assert(err == CL_SUCCESS); - kernel = clCreateKernel(program,"probe",&err); + kernel = clCreateKernel(program, "diderot", &err); assert(err == CL_SUCCESS);