fix for msvc, signed\unsigned and code before decl
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2315 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
502c84d072
commit
f2f66c43a5
|
@ -1229,9 +1229,9 @@ static uint8_t check_channel_status(switch_channel_t **peer_channels,
|
||||||
char *key)
|
char *key)
|
||||||
{
|
{
|
||||||
|
|
||||||
int32_t i;
|
uint32_t i;
|
||||||
|
uint32_t hups = 0;
|
||||||
*idx = -1;
|
*idx = -1;
|
||||||
int32_t hups = 0;
|
|
||||||
|
|
||||||
for (i = 0; i < len; i++) {
|
for (i = 0; i < len; i++) {
|
||||||
if (!peer_channels[i]) {
|
if (!peer_channels[i]) {
|
||||||
|
|
Loading…
Reference in New Issue