diff udp.c @ 1332:7474cc6383d4 libavformat

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents d3aff2c607f9
children 0899bfe4105c
line wrap: on
line diff
--- a/udp.c	Wed Sep 27 19:39:41 2006 +0000
+++ b/udp.c	Wed Sep 27 19:47:39 2006 +0000
@@ -428,7 +428,8 @@
 #else
     struct sockaddr_storage from;
 #endif
-    int from_len, len;
+    socklen_t from_len;
+    int len;
 
     for(;;) {
         from_len = sizeof(from);