artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5de0352
)
Remove debug info inadvertantly left in the last commit.
author
millert
<millert@openbsd.org>
Tue, 13 Jun 2023 21:10:41 +0000
(21:10 +0000)
committer
millert
<millert@openbsd.org>
Tue, 13 Jun 2023 21:10:41 +0000
(21:10 +0000)
usr.bin/seq/seq.c
patch
|
blob
|
history
diff --git
a/usr.bin/seq/seq.c
b/usr.bin/seq/seq.c
index
be07176
..
6e4169d
100644
(file)
--- a/
usr.bin/seq/seq.c
+++ b/
usr.bin/seq/seq.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: seq.c,v 1.
7 2023/06/12 20:15:06
millert Exp $ */
+/* $OpenBSD: seq.c,v 1.
8 2023/06/13 21:10:41
millert Exp $ */
/*-
* Copyright (c) 2005 The NetBSD Foundation, Inc.
@@
-176,7
+176,6
@@
main(int argc, char *argv[])
} else
fmt = generate_format(first, incr, last, equalize, pad);
- warnx("first: %f, incr: %f", first, incr);
for (step = 1, cur = first; incr > 0 ? cur <= last : cur >= last;
cur = first + incr * step++) {
if (cur != first)