summaryrefslogtreecommitdiff
path: root/src/memory.cc
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-03-01 22:07:29 +0100
committerFabrice <fabrice@schaub-dev.xyz>2026-03-01 22:07:29 +0100
commit1dea700d4f6f3b35b80cb4230671e4ece0d7b144 (patch)
tree35e8fab968ec5bf0a9e10d03534285dbda4fb134 /src/memory.cc
parentffa09db5138dea853c910a0307fe5063511abb9f (diff)
fix aligned_alloc call and strlen
Diffstat (limited to 'src/memory.cc')
-rw-r--r--src/memory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memory.cc b/src/memory.cc
index 27504f0..c27c6f3 100644
--- a/src/memory.cc
+++ b/src/memory.cc
@@ -24,7 +24,7 @@ void deallocate(Allocator* allocator, u8* ptr) {
static inline u8* heap_allocate(u8* self, usize size, usize align) {
(void)self;
- return (u8*)aligned_alloc(size, align);
+ return (u8*)aligned_alloc(align, size);
}
static inline void heap_deallocate(u8* self, u8* ptr) {