Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-02-04 14:01:19 +0300
committerEric Andersen <andersen@codepoet.org>2004-02-04 14:01:19 +0300
commitc71c18957d9f990d7373ab39d84e9156dcc7391d (patch)
tree04a4c2fe08bfb6f953e9b3ec784ff3f9e791f70d /coreutils/seq.c
parentc06f568ddaaa65a05080234ec205593e2424dc45 (diff)
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
Diffstat (limited to 'coreutils/seq.c')
-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)
}
last = atof(argv[argc - 1]);
- for (i = first; ((first < last) ? (i <= last): (i >= last));i += increment) {
+ for (i = first; ((first <= last) ? (i <= last): (i >= last));i += increment) {
printf("%g\n", i);
}