scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 29dd7b1e3785eefa865a5ff9ac674d46e6479b39
parent b1f76286f75c39cdf972ebe1884702da9196db8e
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 19 Mar 2014 18:22:24 +0100

Fix the value union

This was an error introduced in some moment in the previous commits

Diffstat:
Msymbol.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/symbol.h b/symbol.h @@ -50,7 +50,7 @@ union value { char c; int i; struct symbol *sym; - uint8_t ns; + uint8_t ns, token; short offset; };