scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit da629584989774c078aea112c231c221eee8be28
parent d5fef04040e76e611d83d6c81802bd9841fea9cf
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 18 Jan 2024 13:34:18 +0100

make: Remove unused variable

Diffstat:
Msrc/cmd/make/rules.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/cmd/make/rules.c b/src/cmd/make/rules.c @@ -264,7 +264,7 @@ touchdeps(Target *tp, int ignore, int silent) static int run(Target *tp) { - int err, r, i, ignore, silent; + int r, i, ignore, silent; char *s; Target *p, **q; @@ -286,7 +286,6 @@ run(Target *tp) } } - err = 0; if (tflag) { r = touchdeps(tp, ignore, silent); if (r)