diff --git a/.pick_status.json b/.pick_status.json index 5081e4386e5..6f445e5637a 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1334,7 +1334,7 @@ "description": "compiler/clc: Fix const correctness in libclc_add_generic_variants", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "4a08ee7ecf07b1d0cdfec4f61bdca08bf6551247", "notes": null diff --git a/src/compiler/clc/nir_load_libclc.c b/src/compiler/clc/nir_load_libclc.c index 8c51aaf776d..48668eaec0f 100644 --- a/src/compiler/clc/nir_load_libclc.c +++ b/src/compiler/clc/nir_load_libclc.c @@ -263,7 +263,7 @@ libclc_add_generic_variants(nir_shader *shader) if (strstr(func->name, "async_work_group_strided_copy")) continue; - char *U3AS1 = strstr(func->name, "U3AS1"); + const char *U3AS1 = strstr(func->name, "U3AS1"); if (U3AS1 == NULL) continue;