scc

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

commit 370c020ff1b057611556aed2d0583d093ad61cc3
parent dfd6b350e13d9915b819b92c890052d7474188c5
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 23 Jan 2016 05:47:10 +0100

Fix small typo in types.c

Diffstat:
Mcc1/types.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1/types.c b/cc1/types.c @@ -498,7 +498,7 @@ mktype(Type *tp, int op, TINT nelem, Type *pars[]) /* * pars was allocated by the caller * but the type already exists, so - * we have to deallocted it + * we have to deallocte it */ free(pars); return bp;