code before declaration.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8034 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-04-04 22:03:41 +00:00
parent b591cb7d5b
commit bd9382b73b
1 changed files with 2 additions and 1 deletions

View File

@ -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;
} }