aboutsummaryrefslogtreecommitdiffstats
path: root/main/dsp.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 19:35:49 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 19:35:49 +0000
commit521f1359c8e03d93bc38c2d016800935ab7921bb (patch)
treecdcf146819f3c0853c2877be8dc1ffe7fa5b5ba6 /main/dsp.c
parentcc7d1eb7ec3abfbb236a0e7637a82410ca4c98f3 (diff)
Yet another minor change to test mantis/svn
(issue #9828) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@67805 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/dsp.c')
-rw-r--r--main/dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/dsp.c b/main/dsp.c
index 703a9f4ff..3d0712bc1 100644
--- a/main/dsp.c
+++ b/main/dsp.c
@@ -1735,7 +1735,7 @@ int ast_dsp_set_call_progress_zone(struct ast_dsp *dsp, char *zone)
{
int x;
- for (x=0;x<sizeof(aliases) / sizeof(aliases[0]);x++) {
+ for (x = 0; x < ARRAY_LEN(aliases); x++) {
if (!strcasecmp(aliases[x].name, zone)) {
dsp->progmode = aliases[x].mode;
ast_dsp_prog_reset(dsp);