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) if (!numstr[0]) break; end = skip_non_whitespace(numstr); - if (*end != '\0'); + if (*end != '\0') *end++ = '\0'; factorize_numstr(numstr); numstr = end; |