From 2f3431d0360f820c993ac6c1f39375d8327cd3c6 Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Wed, 12 Apr 2023 22:51:05 -0500 Subject: [PATCH] Removed use of print function --- stack.c | 1 - 1 file changed, 1 deletion(-) diff --git a/stack.c b/stack.c index e9b7646..d2a0f11 100644 --- a/stack.c +++ b/stack.c @@ -28,7 +28,6 @@ void stack_push(Stack* stack,void* element) { stack->capacity *= 2; } *(stack->data + stack->top_index) = element; - printf("Adding to index %d\n",stack->top_index); stack->top_index++; stack->curr_size++; return;