fixed a warning in getsockaddrlen
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index c46f1e0..cadf609 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -575,7 +575,7 @@
    through len_ret. */
 
 static int
-getsockaddrlen(PySocketSockObject *s, int *len_ret)
+getsockaddrlen(PySocketSockObject *s, unsigned int *len_ret)
 {
 	switch (s->sock_family) {