aboutsummaryrefslogtreecommitdiff
path: root/coreutils/seq.c
diff options
context:
space:
mode:
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);