host/memory: Fix typo

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar 2025-12-04 19:48:49 -04:00
parent 54166a54ea
commit cc8cc63478
No known key found for this signature in database
GPG key ID: 04307C401999C596

View file

@ -23,7 +23,7 @@ pvm_host_memory_arena_t pvm_host_memory_arena_init(size_t capacity)
void* const data = VirtualAlloc(NULL, capacity, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
if (NULL == data)
{
arena.caapcity = 0;
arena.capacity = 0;
return arena;
}
#else