svn commit: r283863 - head/lib/libdpv

Devin Teske dteske at FreeBSD.org
Mon Jun 1 02:06:58 UTC 2015


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);


More information about the svn-src-head mailing list