summaryrefslogtreecommitdiff
path: root/memory.c
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-06-01 12:26:51 +1000
committerquou <quou@disroot.org>2024-06-01 12:26:51 +1000
commit2e761bdb8badecdbda2925a056a6d5aa3e3cac83 (patch)
treea2df5eb3850726eff439f6f133e60e5ee2ec76a4 /memory.c
parentea7cd94f7aeb177618db3907a6c86b7252e018f0 (diff)
Remove a debug print.
Diffstat (limited to 'memory.c')
-rw-r--r--memory.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/memory.c b/memory.c
index 228240a..9dd99c2 100644
--- a/memory.c
+++ b/memory.c
@@ -76,7 +76,6 @@ static void* heap_alloc_impla(Heap* h, int size) {
p = 0;
m = sizeof *header;
h->usage += as;
- printf("%d\n", h->usage);
for (i = 0; i < h->blocks; i++) {
header = (int*)(h->buffer + p);
s = header[0];