Skip to content

Commit

Permalink
the pointer argument to clEnqueueWriteHostPipeINTEL should be const (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
bashbaug authored Mar 20, 2023
1 parent e3e8586 commit 9ddb236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CL/cl_ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -2539,7 +2539,7 @@ typedef cl_int (CL_API_CALL *clEnqueueWriteHostPipeINTEL_fn)(
cl_program program,
const char* pipe_symbol,
cl_bool blocking_write,
void* ptr,
const void* ptr,
size_t size,
cl_uint num_events_in_wait_list,
const cl_event* event_wait_list,
Expand All @@ -2551,7 +2551,7 @@ clEnqueueWriteHostPipeINTEL(
cl_program program,
const char* pipe_symbol,
cl_bool blocking_write,
void* ptr,
const void* ptr,
size_t size,
cl_uint num_events_in_wait_list,
const cl_event* event_wait_list,
Expand Down

0 comments on commit 9ddb236

Please sign in to comment.