diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2023-06-13 21:10:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2023-06-13 21:10:42 +0000 |
commit | e8e823d800136f8b22f79aa2d764500c5cfdc688 (patch) | |
tree | 58b594370a4b0a4dfba6f53520b8a08c1d75dc4a | |
parent | 4560d8ce28e9f55283059f771224030fa8b1fa7e (diff) |
Remove debug info inadvertantly left in the last commit.
-rw-r--r-- | usr.bin/seq/seq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/seq/seq.c b/usr.bin/seq/seq.c index be07176072c..6e4169d1d6a 100644 --- 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) |