From a3158d8d0732e5de937518c153f661e237dc63ad Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Thu, 16 Sep 2021 17:33:52 -0700 Subject: [PATCH] IntStack_print: remove incorrect comment This seems to have been incorrectly copied from IntStack_pop. --- lib/sparse/IntStack.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/sparse/IntStack.c b/lib/sparse/IntStack.c index 9fc392c51..ecf7f44dc 100644 --- a/lib/sparse/IntStack.c +++ b/lib/sparse/IntStack.c @@ -57,7 +57,6 @@ int IntStack_pop(IntStack s, int *flag){ return s->stack[(s->last)--]; } void IntStack_print(IntStack s){ - /* remove the last item. If none exist, return -1 */ int i; for (i = 0; i <= s->last; i++) fprintf(stderr,"%d,",s->stack[i]); fprintf(stderr,"\n"); -- 2.40.0