commit c31b21ec255e921b3f48d6b18fa0cbbd7922aa06 parent 70a260148ff33185ce8e70b3dbd46a15c0ff5aaf Author: Roberto E. Vargas Caballero <roberto.vargas@igrid-td.com> Date: Mon, 4 Apr 2016 09:39:07 +0200 [cc2] Fix small error in comment 'have' was missing. Diffstat:
M | cc2/parser.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cc2/parser.c b/cc2/parser.c @@ -544,8 +544,8 @@ vardecl(void) sym = np->u.sym; /* * We have to free sym->name because in tentative declarations - * we can multiple declarations of the same symbol, and in this - * case our parser will allocate twice the memory + * we can have multiple declarations of the same symbol, and in + * this case our parser will allocate twice the memory */ free(sym->name); sym->name = name;