]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/command_graph.c
lib: Fix OOB range parses, variable matches
[mirror_frr.git] / lib / command_graph.c
index e8f72db19e0de2f9e35a651b98bc7ec8eb8e71ff..07cc306505206d34fe3071d1b7c9480085c8f960 100644 (file)
@@ -193,7 +193,7 @@ dump_node (struct graph_node *node)
   fprintf(stderr, "\t->value: %ld\n", node->value);
   fprintf(stderr, "\t->is_start: %d\n", node->is_start);
   fprintf(stderr, "\t->element: %p\n", node->element);
-  fprintf(stderr, "\t->min: %ld\n->max: %ld\n", node->min, node->max);
+  fprintf(stderr, "\t->min: %lld\n->max: %lld\n", node->min, node->max);
   fprintf(stderr, "\t->arg: %s\n", node->arg);
   fprintf(stderr, "\t->refs: %d\n", node->refs);
   fprintf(stderr, "\tnum children: %d\n", vector_active(node->children));