From: millert Date: Tue, 13 Jun 2023 21:10:41 +0000 (+0000) Subject: Remove debug info inadvertantly left in the last commit. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=874bfdc5c213ca53e696e9d5b1c1375fb92f402d;p=openbsd Remove debug info inadvertantly left in the last commit. --- 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)