summaryrefslogtreecommitdiff
path: root/dahdi_test.c
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2008-10-10 16:15:03 +0000
committerSean Bright <sean@malleable.com>2008-10-10 16:15:03 +0000
commit3f7dd8e1a2c56cc284c703ba5f20e5c32ae6320b (patch)
tree93457a1e228a676acc41b2a81879fa1f090e4557 /dahdi_test.c
parent02d482c25766a6d4100319e6309d23953f8f2206 (diff)
Wrap at 6 instead of 8 so we are sure to fit on an 80 column terminal.
git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@5077 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'dahdi_test.c')
-rw-r--r--dahdi_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dahdi_test.c b/dahdi_test.c
index 612ccb6..699d9e0 100644
--- a/dahdi_test.c
+++ b/dahdi_test.c
@@ -130,7 +130,7 @@ int main(int argc, char *argv[])
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);