Skip to content

Commit baf5a6e

Browse files
committed
[Offload] Fix type mismatch warning in test
1 parent 43260b0 commit baf5a6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

offload/unittests/OffloadAPI/kernel/olLaunchKernel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ TEST_P(olLaunchKernelTest, Success) {
6666
ASSERT_SUCCESS(olWaitQueue(Queue));
6767

6868
uint32_t *Data = (uint32_t *)Mem;
69-
for (int i = 0; i < 64; i++) {
69+
for (uint32_t i = 0; i < 64; i++) {
7070
ASSERT_EQ(Data[i], i);
7171
}
7272

0 commit comments

Comments
 (0)