From 4e49a944da7a6816d126205c79700704708f4300 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 13 Dec 2014 12:12:14 -0600 Subject: Leftover variable from factoring out base64_init() caused an unused variable warning. --- toys/posix/uuencode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix/uuencode.c') diff --git a/toys/posix/uuencode.c b/toys/posix/uuencode.c index ca3f10d3..34ca7013 100644 --- a/toys/posix/uuencode.c +++ b/toys/posix/uuencode.c @@ -22,7 +22,7 @@ config UUENCODE void uuencode_main(void) { - char *p, *name = toys.optargs[toys.optc-1], buf[(76/4)*3]; + char *name = toys.optargs[toys.optc-1], buf[(76/4)*3]; int i, m = toys.optflags & FLAG_m, fd = 0; -- cgit v1.2.3