aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-04 11:01:19 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-04 11:01:19 +0000
commitb19ea36cdc7fd07021e1ffe86435eb223c362cde (patch)
tree04a4c2fe08bfb6f953e9b3ec784ff3f9e791f70d
parent1ed84a8c154763f1ef182d095fbfb578d5b14165 (diff)
downloadbusybox-w32-b19ea36cdc7fd07021e1ffe86435eb223c362cde.tar.gz
busybox-w32-b19ea36cdc7fd07021e1ffe86435eb223c362cde.tar.bz2
busybox-w32-b19ea36cdc7fd07021e1ffe86435eb223c362cde.zip
Jean Wolter writes:
Hello, when calling seq with seq 1 1 it generates an "endless" list of numbers until the counter wraps and reaches 1 again. The follwoing small patch should introduce the expected behavior (output of 1 and termination): regards, Jean git-svn-id: svn://busybox.net/trunk/busybox@8399 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/seq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/seq.c b/coreutils/seq.c
index 8401a6def..8a2a80c14 100644
--- a/coreutils/seq.c
+++ b/coreutils/seq.c
@@ -36,7 +36,7 @@ extern int seq_main(int argc, char **argv)
36 } 36 }
37 last = atof(argv[argc - 1]); 37 last = atof(argv[argc - 1]);
38 38
39 for (i = first; ((first < last) ? (i <= last): (i >= last));i += increment) { 39 for (i = first; ((first <= last) ? (i <= last): (i >= last));i += increment) {
40 printf("%g\n", i); 40 printf("%g\n", i);
41 } 41 }
42 42