diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/uuencode.c | 2 |
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; |