socket, select: Fix -Wsign-compare warnings

Change-Id: Idf6213e66e9bf609e930c6134292458a7d521871
diff --git a/src/select.c b/src/select.c
index ddff132..735ea3e 100644
--- a/src/select.c
+++ b/src/select.c
@@ -316,7 +316,7 @@
 }
 
 /* iterate over first n_fd entries of g_poll.poll + dispatch */
-static int poll_disp_fds(int n_fd)
+static int poll_disp_fds(unsigned int n_fd)
 {
 	struct osmo_fd *ufd;
 	unsigned int i;