提交 bd9382b7 authored 作者: Michael Jerris's avatar Michael Jerris

code before declaration.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8034 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 b591cb7d
...@@ -697,8 +697,9 @@ SWITCH_STANDARD_APP(fifo_function) ...@@ -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;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论