]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/command_graph.h
lib: Fix OOB range parses, variable matches
[mirror_frr.git] / lib / command_graph.h
index ed0e98a6e53895b3eb414a2901043cfbbc40a332..32a07ce4eae27970268d3993c495e8941c6547b8 100644 (file)
@@ -29,7 +29,7 @@ struct graph_node
 
   char* text;               // for WORD_GN and VARIABLE_GN
   long value;               // for NUMBER_GN
-  long min, max;            // for RANGE_GN
+  signed long long min, max;// for RANGE_GN
 
   /* cmd_element struct pointer, only valid for END_GN */
   struct cmd_element *element;