Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
terminal-cs committed Oct 7, 2022
1 parent 9d4439c commit 3447b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Kernels/MemoryOperationsTest/Kernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ static unsafe void TestRealloc()
{
// Allocate initial pointer and fill with value 32
byte* aPtr = Heap.Alloc(16);
MemoryOperations.Fill(aPtr, 32, 16);
MemoryOperations.Fill(aPtr, (int)32, 16);

// Resize/realloc to 17 bytes
aPtr = Heap.Realloc(aPtr, 17);
Expand Down

0 comments on commit 3447b34

Please sign in to comment.