scc

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

commit 1314a5e8a5a9566aef17c9094296a4cf7f2a6859
parent e4101bbd30eb454370fc59546daa49c76f032511
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 23 Aug 2017 19:36:43 +0200

[driver] Increase the size of valid commands

After adding the 4 field names some tools can have a bigger name.

Diffstat:
Mdriver/posix/scc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/driver/posix/scc.c b/driver/posix/scc.c @@ -35,7 +35,7 @@ enum { static struct tool { char cmd[PATH_MAX]; - char bin[16]; + char bin[32]; char *outfile; struct items args; unsigned nparams;