Leftover variable from factoring out base64_init() caused an unused variable warning.
authorRob Landley <rob@landley.net>
Sat, 13 Dec 2014 18:12:14 +0000 (12:12 -0600)
committerRob Landley <rob@landley.net>
Sat, 13 Dec 2014 18:12:14 +0000 (12:12 -0600)
toys/posix/uuencode.c

index ca3f10d..34ca701 100644 (file)
@@ -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;