aboutsummaryrefslogtreecommitdiff
path: root/coreutils/seq.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-22 17:11:44 +0000
committerRob Landley <rob@landley.net>2006-03-22 17:11:44 +0000
commit2324a7c9e5809441cbba5ea3e84bcea65578b725 (patch)
tree95dd9aaf74b06b3f6e6c12ea7ec1cc30782f8c42 /coreutils/seq.c
parenta35886c86299bbf670d5c6a04284da5be1b62a57 (diff)
downloadbusybox-2324a7c9e5809441cbba5ea3e84bcea65578b725.tar.gz
Fix "seq 1 1".
Diffstat (limited to 'coreutils/seq.c')
-rw-r--r--coreutils/seq.c4
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);