summaryrefslogtreecommitdiff
path: root/src/std/mem.h
diff options
context:
space:
mode:
authorOmniscient <omniscient.oce@gmail.com>2024-06-07 12:13:22 +1000
committerOmniscient <omniscient.oce@gmail.com>2024-06-07 12:13:22 +1000
commit5751ffae2eb8f786edb2dcd9e7f635fd1d0c1331 (patch)
tree237e4cf25f97210d180395871e75550352e9badb /src/std/mem.h
parent44188d921c13111b61904f98ad06f8249e41d050 (diff)
chore: fmt
Diffstat (limited to 'src/std/mem.h')
-rw-r--r--src/std/mem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/std/mem.h b/src/std/mem.h
index b256e27..6e76763 100644
--- a/src/std/mem.h
+++ b/src/std/mem.h
@@ -69,7 +69,7 @@ void void_pool_dealloc(void_pool* pool, u32 raw_handle);
} Name##_pool; \
\
static Name##_pool Name##_pool_create(arena* a, u64 cap, u64 entry_size) { \
- void_pool p = void_pool_create(a, "\""#Name"\"", cap, entry_size); \
+ void_pool p = void_pool_create(a, "\"" #Name "\"", cap, entry_size); \
return (Name##_pool){ .inner = p }; \
} \
static inline T* Name##_pool_get(Name##_pool* pool, Name##_handle handle) { \