[svn-commits] seanbright: tools/trunk r5077 - /tools/trunk/dahdi_test.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Oct 10 11:15:04 CDT 2008


Author: seanbright
Date: Fri Oct 10 11:15:03 2008
New Revision: 5077

URL: http://svn.digium.com/view/dahdi?view=rev&rev=5077
Log:
Wrap at 6 instead of 8 so we are sure to fit on an 80 column terminal.

Modified:
    tools/trunk/dahdi_test.c

Modified: tools/trunk/dahdi_test.c
URL: http://svn.digium.com/view/dahdi/tools/trunk/dahdi_test.c?view=diff&rev=5077&r1=5076&r2=5077
==============================================================================
--- tools/trunk/dahdi_test.c (original)
+++ tools/trunk/dahdi_test.c Fri Oct 10 11:15:03 2008
@@ -130,7 +130,7 @@
 			if (verbose) {
 				printf("\n%d samples in %0.3f system clock sample intervals (%.3f%%)", 
 						count, ms, 100 - percent);
-			} else if (pass > 0 && (pass % 8) == 0) {
+			} else if (pass > 0 && (pass % 6) == 0) {
 				printf("\n");
 			}
 			score = 100.0 - fabs(percent);




More information about the svn-commits mailing list