summaryrefslogtreecommitdiff
path: root/lib/command_graph.h
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2016-07-26 14:02:36 +0000
committerQuentin Young <qlyoung@cumulusnetworks.com>2016-07-26 14:02:36 +0000
commita53fbbf5f0e52793c262f9326340a606cf37500f (patch)
tree3098d31d847741cd50bcaaa006895cc072ce3853 /lib/command_graph.h
parent880e24a1e4cc78cb23ebdd72f2e5cea861cf8be2 (diff)
lib: Incremental matching improvement
Shotgun changes to matching system Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/command_graph.h')
-rw-r--r--lib/command_graph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/command_graph.h b/lib/command_graph.h
index ce458d0b29..e57c078688 100644
--- a/lib/command_graph.h
+++ b/lib/command_graph.h
@@ -32,8 +32,8 @@ struct graph_node
/* various data fields for nodes */
char* text; // for WORD_GN and VARIABLE_GN
- int value; // for NUMBER_GN
- int min, max; // for RANGE_GN
+ long value; // for NUMBER_GN
+ long min, max; // for RANGE_GN
};
/*