diff rtpproto.c @ 1332:7474cc6383d4 libavformat

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents edbe5c3717f9
children 0899bfe4105c
line wrap: on
line diff
--- a/rtpproto.c	Wed Sep 27 19:39:41 2006 +0000
+++ b/rtpproto.c	Wed Sep 27 19:47:39 2006 +0000
@@ -175,7 +175,8 @@
 {
     RTPContext *s = h->priv_data;
     struct sockaddr_in from;
-    int from_len, len, fd_max, n;
+    socklen_t from_len;
+    int len, fd_max, n;
     fd_set rfds;
 #if 0
     for(;;) {