From 324c11a1bed2d8705af25cb4fa8c8bc9c98accdb Mon Sep 17 00:00:00 2001 From: Devin Teske Date: Mon, 1 Jun 2015 02:06:57 +0000 Subject: [PATCH] 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 --- lib/libdpv/dpv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libdpv/dpv.c b/lib/libdpv/dpv.c index fd443608e71..6a03922ff9f 100644 --- a/lib/libdpv/dpv.c +++ b/lib/libdpv/dpv.c @@ -692,7 +692,7 @@ dpv(struct dpv_config *config, struct dpv_file_node *file_list) 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);