bc: convert to "G trick" - this returns bc to zero bss increase
[oweals/busybox.git] / coreutils / paste.c
index d929d6aa0c6207e5e65d76363a5212acb9bb4706..52f67f9513d05e01708267c4dd631db1a6d9c7bf 100644 (file)
@@ -7,11 +7,11 @@
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 //config:config PASTE
-//config:      bool "paste"
+//config:      bool "paste (4.5 kb)"
 //config:      default y
 //config:      help
-//config:        paste is used to paste lines of different files together
-//config:        and write the result to stdout
+//config:      paste is used to paste lines of different files together
+//config:      and write the result to stdout
 
 //applet:IF_PASTE(APPLET_NOEXEC(paste, paste, BB_DIR_USR_BIN, BB_SUID_DROP, paste))
 
@@ -127,7 +127,7 @@ int paste_main(int argc UNUSED_PARAM, char **argv)
                (--argv)[0] = (char*) "-";
        for (i = 0; argv[i]; ++i) {
                argv[i] = (void*) fopen_or_warn_stdin(argv[i]);
-               if (!argv[i])
+               if (!argv[i])
                        xfunc_die();
        }