miniupnpd/miniupnpd.c: fixed signed/unsigned comparaison

This commit is contained in:
Thomas Bernard 2012-07-17 21:37:09 +02:00
parent 6451a6906d
commit e39c29dcd7
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ write_option_list(int fd)
{
char buffer[256];
int len;
int i;
unsigned int i;
write(fd, "Options :\n", 10);
for(i=0; i<num_options; i++)
{