Fix signedness compiler warnings.

This commit is contained in:
Guus Sliepen 2006-03-19 13:06:21 +00:00
parent fb1cda2ca4
commit af95368c0f
8 changed files with 32 additions and 31 deletions

View file

@ -391,7 +391,8 @@ bool handle_new_meta_connection(int sock)
int option;
connection_t *c;
sockaddr_t sa;
int fd, len = sizeof(sa);
int fd;
socklen_t len = sizeof(sa);
cp();