]> granicus.if.org Git - graphviz/commitdiff
IntStack_print: remove incorrect comment
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 17 Sep 2021 00:33:52 +0000 (17:33 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 20 Sep 2021 00:24:30 +0000 (17:24 -0700)
This seems to have been incorrectly copied from IntStack_pop.

lib/sparse/IntStack.c

index 9fc392c51787120b4864cf8ca2727e1202ca429a..ecf7f44dcc2ba260cd362862ea7da273bbdefba7 100644 (file)
@@ -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");