From: Matthew Fernandez Date: Fri, 17 Sep 2021 00:33:52 +0000 (-0700) Subject: IntStack_print: remove incorrect comment X-Git-Tag: 2.49.1~2^2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3158d8d0732e5de937518c153f661e237dc63ad;p=graphviz IntStack_print: remove incorrect comment This seems to have been incorrectly copied from IntStack_pop. --- 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");