diff options
-rw-r--r-- | coreutils/factor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/factor.c b/coreutils/factor.c index 818414775..205cdc053 100644 --- a/coreutils/factor.c +++ b/coreutils/factor.c | |||
@@ -201,7 +201,7 @@ int factor_main(int argc UNUSED_PARAM, char **argv) | |||
201 | if (!numstr[0]) | 201 | if (!numstr[0]) |
202 | break; | 202 | break; |
203 | end = skip_non_whitespace(numstr); | 203 | end = skip_non_whitespace(numstr); |
204 | if (*end != '\0'); | 204 | if (*end != '\0') |
205 | *end++ = '\0'; | 205 | *end++ = '\0'; |
206 | factorize_numstr(numstr); | 206 | factorize_numstr(numstr); |
207 | numstr = end; | 207 | numstr = end; |