mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-15 10:36:59 +00:00
host/memory: Fix typo
Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
parent
54166a54ea
commit
cc8cc63478
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
void* const data = VirtualAlloc(NULL, capacity, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
|
||||||
if (NULL == data)
|
if (NULL == data)
|
||||||
{
|
{
|
||||||
arena.caapcity = 0;
|
arena.capacity = 0;
|
||||||
return arena;
|
return arena;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue