summaryrefslogtreecommitdiff
path: root/src/std/mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/std/mem.c')
-rw-r--r--src/std/mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/std/mem.c b/src/std/mem.c
index ede1db4..5cc4304 100644
--- a/src/std/mem.c
+++ b/src/std/mem.c
@@ -104,7 +104,7 @@ void* void_pool_alloc(void_pool* pool, u32* out_raw_handle) {
TRACE("%ld %ld ", start, cur);
assert(cur > start);
u32 index = (u32)((cur - start) / pool->entry_size);
- printf("Index %d\n", index);
+ /* printf("Index %d\n", index); */
if (out_raw_handle != NULL) {
*out_raw_handle = index;
}