mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 22:19:02 +00:00
Fix compiler warnings in test_vulkan (#2474)
Use the correct print format specifiers for `uint64_t` and fix loop index type to address sign warning. Signed-off-by: Ahmed Hesham <ahmed.hesham@arm.com>
This commit is contained in:
@@ -1226,7 +1226,7 @@ int run_test_with_multi_import_diff_ctx(
|
||||
vkCommandBuffer.dispatch(512, 1, 1);
|
||||
vkCommandBuffer.end();
|
||||
|
||||
for (uint32_t i = 0; i < numImports; i++)
|
||||
for (int i = 0; i < numImports; i++)
|
||||
{
|
||||
update_buffer_kernel1[i] = (numBuffers == 1)
|
||||
? kernel1[0]
|
||||
|
||||
Reference in New Issue
Block a user