code before declaration.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8034 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
b591cb7d5b
commit
bd9382b73b
|
@ -697,8 +697,9 @@ SWITCH_STANDARD_APP(fifo_function)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (x = 0; x < custom_pop; x++) {
|
for (x = 0; x < custom_pop; x++) {
|
||||||
|
int temp;
|
||||||
switch_assert(pop_list[x]);
|
switch_assert(pop_list[x]);
|
||||||
int temp = atoi(pop_list[x]);
|
temp = atoi(pop_list[x]);
|
||||||
if (temp > -1 && temp < MAX_PRI) {
|
if (temp > -1 && temp < MAX_PRI) {
|
||||||
pop_array[x] = temp;
|
pop_array[x] = temp;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue