diff --git a/cv3/program.c b/cv3/program.c index 9dc79fa..3b2503e 100644 --- a/cv3/program.c +++ b/cv3/program.c @@ -19,7 +19,7 @@ void push_stack(struct stack *s, float value) { s->size++; } else { printf("full stack\n"); - exit(1); // Exit the program on overflow + exit(0); // Exit the program on overflow } }