claenups for previous commit
[oweals/busybox.git] / coreutils / factor.c
index 81841477535af8a13db3068a80ecf7a7c54e2273..467e23a4d81aebbda0fcba7cab6f31d05f14c0d8 100644 (file)
@@ -4,10 +4,10 @@
  * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 //config:config FACTOR
-//config:      bool "factor"
+//config:      bool "factor (2.6 kb)"
 //config:      default y
 //config:      help
-//config:        factor factorizes integers
+//config:      factor factorizes integers
 
 //applet:IF_FACTOR(APPLET(factor, BB_DIR_USR_BIN, BB_SUID_DROP))
 
@@ -201,7 +201,7 @@ int factor_main(int argc UNUSED_PARAM, char **argv)
                                if (!numstr[0])
                                        break;
                                end = skip_non_whitespace(numstr);
-                               if (*end != '\0');
+                               if (*end != '\0')
                                        *end++ = '\0';
                                factorize_numstr(numstr);
                                numstr = end;