diff options
author | Rob Landley <rob@landley.net> | 2006-03-22 17:11:44 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-22 17:11:44 +0000 |
commit | 2324a7c9e5809441cbba5ea3e84bcea65578b725 (patch) | |
tree | 95dd9aaf74b06b3f6e6c12ea7ec1cc30782f8c42 /coreutils/seq.c | |
parent | a35886c86299bbf670d5c6a04284da5be1b62a57 (diff) | |
download | busybox-w32-2324a7c9e5809441cbba5ea3e84bcea65578b725.tar.gz busybox-w32-2324a7c9e5809441cbba5ea3e84bcea65578b725.tar.bz2 busybox-w32-2324a7c9e5809441cbba5ea3e84bcea65578b725.zip |
Fix "seq 1 1".
Diffstat (limited to 'coreutils/seq.c')
-rw-r--r-- | coreutils/seq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/seq.c b/coreutils/seq.c index 66141c4e2..f4d891772 100644 --- a/coreutils/seq.c +++ b/coreutils/seq.c | |||
@@ -29,9 +29,9 @@ int seq_main(int argc, char **argv) | |||
29 | } | 29 | } |
30 | 30 | ||
31 | /* You should note that this is pos-5.0.91 semantics, -- FK. */ | 31 | /* You should note that this is pos-5.0.91 semantics, -- FK. */ |
32 | if (first < last ? increment > 0 : increment < 0) { | 32 | if (first <= last ? increment > 0 : increment < 0) { |
33 | for (i = first; | 33 | for (i = first; |
34 | (first < last) ? (i <= last) : (i >= last); | 34 | (first <= last) ? (i <= last) : (i >= last); |
35 | i += increment) | 35 | i += increment) |
36 | { | 36 | { |
37 | printf("%g\n", i); | 37 | printf("%g\n", i); |