aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/uuencode.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-12-13 12:12:14 -0600
committerRob Landley <rob@landley.net>2014-12-13 12:12:14 -0600
commit4e49a944da7a6816d126205c79700704708f4300 (patch)
tree9be24ab80c8ddc0e2725bea3ec91058cc2d47608 /toys/posix/uuencode.c
parent79839a4f4f1430f4ddf4ec1d3b1836f8b91ff671 (diff)
downloadtoybox-4e49a944da7a6816d126205c79700704708f4300.tar.gz
Leftover variable from factoring out base64_init() caused an unused variable warning.
Diffstat (limited to 'toys/posix/uuencode.c')
-rw-r--r--toys/posix/uuencode.c2
1 files changed, 1 insertions, 1 deletions
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;