summaryrefslogtreecommitdiffstats
path: root/mmss/config.y
diff options
context:
space:
mode:
Diffstat (limited to 'mmss/config.y')
-rw-r--r--mmss/config.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/mmss/config.y b/mmss/config.y
index d40046b..4b4647a 100644
--- a/mmss/config.y
+++ b/mmss/config.y
@@ -40,7 +40,7 @@
}
%union {
- int num;
+ uint64_t uint64;
float fnum;
bool boolean;
char *str;
@@ -49,7 +49,7 @@
const char *error;
}
-%token <num> TOK_INTEGER
+%token <uint64> TOK_UINT
%token <fnum> TOK_FLOAT
%token <str> TOK_STRING
%token <addr> TOK_GMRF_ADDRESS
@@ -157,7 +157,7 @@ node_interface: TOK_STRING TOK_NETWORK TOK_STRING TOK_ADDRESS TOK_GMRF_ADDRESS {
;
float: TOK_FLOAT { $$ = $1; }
- | TOK_INTEGER { $$ = $1; }
+ | TOK_UINT { $$ = $1; }
;
boolean: TOK_YES { $$ = true; }