From ba65e6c433d78306d2bbdc178896e5f5e1cc6f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20H=C3=B6hne?= Date: Mon, 30 Jun 2025 19:47:13 +0200 Subject: [PATCH] amend: Removing debug prints. --- src/list.c | 2 -- src/utils.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/list.c b/src/list.c index bb83506..06fd150 100644 --- a/src/list.c +++ b/src/list.c @@ -27,8 +27,6 @@ struct SETBlockMeta *set_ll_free_one(struct SETBlockMeta *head, void *address) struct SETBlockMeta *meta = (struct SETBlockMeta *)(address - (sizeof(struct SETBlockMeta))); - printf("Freeing: %p\n", meta); - if (meta->prev == NULL) { struct SETBlockMeta *ret = meta->next; diff --git a/src/utils.c b/src/utils.c index 391eb62..4f88b84 100644 --- a/src/utils.c +++ b/src/utils.c @@ -64,8 +64,6 @@ void *set_malloc(size_t n) block_meta_head->end = meta; } - printf("Allocating at address %p\n", blocks); - return blocks + sizeof(struct SETBlockMeta); }