From bad51bd21d11af139b4d23efb74aa991d8915896 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20L=C3=BCtke=20Dreimann?= Date: Mon, 30 Jun 2025 11:13:11 +0200 Subject: [PATCH] use cl types --- repos/hello_gpgpu/src/hello_gpgpu/CL/cl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repos/hello_gpgpu/src/hello_gpgpu/CL/cl.cc b/repos/hello_gpgpu/src/hello_gpgpu/CL/cl.cc index ff17bce5e6..0107ede4e2 100644 --- a/repos/hello_gpgpu/src/hello_gpgpu/CL/cl.cc +++ b/repos/hello_gpgpu/src/hello_gpgpu/CL/cl.cc @@ -1074,7 +1074,7 @@ clEnqueueReadBuffer(cl_command_queue command_queue, const cl_event * event_wait_list, cl_event * event) { - if(blocking_read == false) + if(blocking_read == CL_FALSE) { return CL_INVALID_VALUE; } @@ -1124,7 +1124,7 @@ clEnqueueWriteBuffer(cl_command_queue command_queue, const cl_event * event_wait_list, cl_event * event) { - if(blocking_write == false) + if(blocking_write == CL_FALSE) { return CL_INVALID_VALUE; }