OSDN Git Service

Merge "Leftover variable from factoring out base64_init() caused an unused variable...
authorElliott Hughes <enh@google.com>
Fri, 19 Dec 2014 01:53:16 +0000 (01:53 +0000)
committerGerrit Code Review <noreply-gerritcodereview@google.com>
Fri, 19 Dec 2014 01:53:16 +0000 (01:53 +0000)
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;