correct some signed/unsigned issues found by GCC 4 (bug #4237)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5664 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-05-15 03:21:51 +00:00
parent 977fd5a157
commit 6cd4f9a8d3
8 changed files with 15 additions and 15 deletions

4
rtp.c
View File

@@ -313,7 +313,7 @@ static int rtpread(int *id, int fd, short events, void *cbdata)
struct ast_frame *ast_rtcp_read(struct ast_rtp *rtp)
{
static struct ast_frame null_frame = { AST_FRAME_NULL, };
int len;
socklen_t len;
int hdrlen = 8;
int res;
struct sockaddr_in sin;
@@ -382,7 +382,7 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
{
int res;
struct sockaddr_in sin;
int len;
socklen_t len;
unsigned int seqno;
int version;
int payloadtype;