From: Eric Andersen Date: Wed, 4 Feb 2004 11:01:19 +0000 (-0000) Subject: Jean Wolter writes: X-Git-Tag: 1_00_pre7~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c71c18957d9f990d7373ab39d84e9156dcc7391d;p=oweals%2Fbusybox.git 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 --- 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); }