Skip to content

Commit dcb863c

Browse files
committed
[Offload] Fix type mismatch warning in test
1 parent 3d7aa96 commit dcb863c

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
@@ -71,7 +71,7 @@ TEST_P(olLaunchKernelTest, Success) {
7171
ASSERT_SUCCESS(olWaitQueue(Queue));
7272

7373
uint32_t *Data = (uint32_t *)Mem;
74-
for (int i = 0; i < 64; i++) {
74+
for (uint32_t i = 0; i < 64; i++) {
7575
ASSERT_EQ(Data[i], i);
7676
}
7777

0 commit comments

Comments
 (0)