Date: Mon, 1 Jun 2015 02:06:58 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r283863 - head/lib/libdpv Message-ID: <201506010206.t5126w7m038641@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dteske Date: Mon Jun 1 02:06:57 2015 New Revision: 283863 URL: https://svnweb.freebsd.org/changeset/base/283863 Log: Fix a debug statement. Only the callback function (performing the incrementing of dpv_overall_oread) knows what its purpose is (and often times it was bytes, not lines). MFC after: 3 days X-MFC-to: stable/10 Modified: head/lib/libdpv/dpv.c Modified: head/lib/libdpv/dpv.c ============================================================================== --- head/lib/libdpv/dpv.c Mon Jun 1 01:54:21 2015 (r283862) +++ head/lib/libdpv/dpv.c Mon Jun 1 02:06:57 2015 (r283863) @@ -692,7 +692,7 @@ dpv(struct dpv_config *config, struct dp if (!dpv_interrupt) printf("\n"); } else - warnx("%s: %lli lines read", __func__, dpv_overall_read); + warnx("%s: %lli overall read", __func__, dpv_overall_read); if (dpv_interrupt || dpv_abort) return (-1);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506010206.t5126w7m038641>