diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-17 15:57:07 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-17 15:57:07 +0200 |
| commit | d85352b4ff51694cb35b429e4cef53302c9e7076 (patch) | |
| tree | ccf9b35712e27df33693552b04b9611c843f1104 /coreutils | |
| parent | 8352b717ce615c4445d6e318019169a6e10ac8e1 (diff) | |
| download | busybox-w32-d85352b4ff51694cb35b429e4cef53302c9e7076.tar.gz busybox-w32-d85352b4ff51694cb35b429e4cef53302c9e7076.tar.bz2 busybox-w32-d85352b4ff51694cb35b429e4cef53302c9e7076.zip | |
factor: fix stray semicolon
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
| -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; |
