Browse Source

tests/datawizard/opencl_codelet_unsigned_inc_kernel.cl: use correct datatype

Nathalie Furmento 13 years ago
parent
commit
b53f29d34a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/datawizard/opencl_codelet_unsigned_inc_kernel.cl

+ 1 - 1
tests/datawizard/opencl_codelet_unsigned_inc_kernel.cl

@@ -14,7 +14,7 @@
  * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  */
 
-__kernel void _opencl_unsigned_inc(__global unsigned int *val)
+__kernel void _opencl_unsigned_inc(__global unsigned *val)
 {
 	val[0]++;
 }