From 359f318dcb3a67b2029f3449a704d749073cf295 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Fri, 1 Aug 2025 10:12:54 -0600 Subject: [PATCH] remove debug printf --- .../memory-bucket-optimizer/optimizer/memory_bucket_optimizer.c | 1 - 1 file changed, 1 deletion(-) diff --git a/staticmemory/memory-bucket-optimizer/optimizer/memory_bucket_optimizer.c b/staticmemory/memory-bucket-optimizer/optimizer/memory_bucket_optimizer.c index 0e68b855..d3f84532 100644 --- a/staticmemory/memory-bucket-optimizer/optimizer/memory_bucket_optimizer.c +++ b/staticmemory/memory-bucket-optimizer/optimizer/memory_bucket_optimizer.c @@ -446,7 +446,6 @@ void optimize_buckets(AllocSizeNode* alloc_sizes, AllocSizeNode* alloc_sizes_by_ } current = current->next; } - printf("num_buckets = %d max = %p\n", *num_buckets, max); if (max != NULL) { buckets[*num_buckets] = calculate_bucket_size_with_padding(max->size); dist[*num_buckets] = max->max_concurrent;