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)
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);