aboutsummaryrefslogtreecommitdiff
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.h b/parser.h
index 168c7e9..334834a 100644
--- a/parser.h
+++ b/parser.h
@@ -14,7 +14,7 @@ struct ARRAY_STRUCT {
};
struct VALUE_STRUCT {
- enum { VWORD, VINT, VFLOAT, VSTR, VQUOTE } type;
+ enum { VWORD, VINT, VFLOAT, VSTR, VQUOTE, VERR } type;
union {
long double int_float;
array_t *quote;