summaryrefslogtreecommitdiff
path: root/src/std/mem.h
diff options
context:
space:
mode:
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) { \