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 | |
parent | a35886c86299bbf670d5c6a04284da5be1b62a57 (diff) | |
download | busybox-2324a7c9e5809441cbba5ea3e84bcea65578b725.tar.gz |
Fix "seq 1 1".
Diffstat (limited to 'coreutils')
-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) } /* You should note that this is pos-5.0.91 semantics, -- FK. */ - if (first < last ? increment > 0 : increment < 0) { + if (first <= last ? increment > 0 : increment < 0) { for (i = first; - (first < last) ? (i <= last) : (i >= last); + (first <= last) ? (i <= last) : (i >= last); i += increment) { printf("%g\n", i); |