diff toys/posix/uuencode.c @ 1609:1c152e2c5b27 draft

Leftover variable from factoring out base64_init() caused an unused variable warning.
author Rob Landley <rob@landley.net>
date Sat, 13 Dec 2014 12:12:14 -0600
parents c4c9267467f8
children
line wrap: on
line diff
--- a/toys/posix/uuencode.c	Sat Dec 13 12:09:25 2014 -0600
+++ b/toys/posix/uuencode.c	Sat Dec 13 12:12:14 2014 -0600
@@ -22,7 +22,7 @@
 
 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;