diff options
author | Jan Maria Matejka <mq@ucw.cz> | 2019-05-21 16:33:37 +0000 |
---|---|---|
committer | Jan Maria Matejka <mq@ucw.cz> | 2019-05-21 16:33:37 +0000 |
commit | 96d757c13fe4b2e21b265275af9ac7d1e2c3f075 (patch) | |
tree | 5a672d7d65d46591fc449486dd4c03d03d507a52 /filter/data.h | |
parent | 20c6ea70ccb69f3c1d9ca46cc7941eb686f283c6 (diff) |
Filter: Store variables and function arguments on stack
Diffstat (limited to 'filter/data.h')
-rw-r--r-- | filter/data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/data.h b/filter/data.h index 6ef2024f..6973008f 100644 --- a/filter/data.h +++ b/filter/data.h @@ -17,8 +17,8 @@ /* Internal types */ enum f_type { -/* Do not use type of zero, that way we'll see errors easier. */ - T_VOID = 1, +/* Nothing. Simply nothing. */ + T_VOID = 0, /* User visible types, which fit in int */ T_INT = 0x10, |