From 39d20778d79bb4a0f19056903c6293eea9398b87 Mon Sep 17 00:00:00 2001 From: Ben Ashbaugh Date: Mon, 16 Dec 2024 17:20:36 -0800 Subject: [PATCH] fix typo: uint -> cl_uint --- samples/17_concurrentdispatch/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/17_concurrentdispatch/main.cpp b/samples/17_concurrentdispatch/main.cpp index 1a6f63b..bfa057d 100644 --- a/samples/17_concurrentdispatch/main.cpp +++ b/samples/17_concurrentdispatch/main.cpp @@ -197,7 +197,7 @@ int main(int argc, char** argv) for( size_t i = 0; i < gws + 1; i++ ) { - uint check = (i == gws) ? gws : gws + 1; + cl_uint check = (i == gws) ? gws : gws + 1; if( pDst[i] != check ) { if( mismatches < 16 )