[winpr,collections] fix cast warnings

This commit is contained in:
Armin Novak 2023-07-28 09:16:26 +02:00 committed by akallabeth
parent 20653aee1d
commit f2aa469700

View File

@ -240,7 +240,7 @@ static BOOL ArrayList_Shift(wArrayList* arrayList, size_t index, SSIZE_T count)
if (chunk > 0)
MoveMemory(&arrayList->array[index], &arrayList->array[index - count],
chunk * sizeof(void*));
(size_t)chunk * sizeof(void*));
arrayList->size += count;
}