scc

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

commit 635c6920665bc0ebcda4f15d85c1f3a56c476b29
parent 976485b2808fd339d5e62f1a9e8c05fe9733afde
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 21 Sep 2017 08:59:21 +0100

[cc2] Fix small spelling error in error list

This error was making that the last word of the  sentence was
considered a simple word with /* and then it was removed.

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

diff --git a/cc2/cc2.h b/cc2/cc2.h @@ -131,7 +131,7 @@ enum nerrors { ESTACKU, /* stack underflow */ ELNLINE, /* line too long */ ELNBLNE, /* line without new line */ - EFERROR, /* error reading from file:%s*/ + EFERROR, /* error reading from file:%s */ EBADID, /* incorrect symbol id */ EWTACKO, /* switch stack overflow */ EWTACKU, /* switch stack underflow */