aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/parse.h
diff options
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.h b/parse.h
index 7e74814e..6909efe8 100644
--- a/parse.h
+++ b/parse.h
@@ -25,7 +25,7 @@ enum statement_type {
};
struct statement {
- int type;
+ enum statement_type type;
struct token *token;
struct statement *next;
union {