From 2dd433fb809a1ac37d42d1dfec2d5aec3dcce474 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 12 Nov 2008 10:42:55 +0000 Subject: [PATCH] fix compiler warning in msvc git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10343 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 193b40c05a..9f2165cd25 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -1257,7 +1257,7 @@ static int rtp_common_read(switch_rtp_t *rtp_session, switch_payload_t *payload_ { switch_size_t bytes = 0; switch_status_t status; - uint8_t check = 0; + int check = 0; stfu_frame_t *jb_frame; int ret = -1; int sleep_mss = 1000;