[Toybox] [PATCH] remove accidental space in format string

enh enh at google.com
Wed Feb 25 21:25:46 PST 2015


the ' ' flag makes no sense for %c.

diff --git a/toys/posix/split.c b/toys/posix/split.c
index d9a556b..aabf931 100644
--- a/toys/posix/split.c
+++ b/toys/posix/split.c
@@ -100,7 +100,7 @@ void split_main(void)
   if (!TT.bytes && !TT.lines) TT.lines = 1000;

   // Allocate template for output filenames
-  TT.outfile = xmprintf("%s% *c", (toys.optc == 2) ? toys.optargs[1] : "x",
+  TT.outfile = xmprintf("%s%*c", (toys.optc == 2) ? toys.optargs[1] : "x",
     (int)TT.suflen, ' ');

   // We only ever use one input, but this handles '-' or no input for us.

 1424928346.0


More information about the Toybox mailing list