Fix implicit cast warning in check_allowed_connect_ports().

Michael
This commit is contained in:
Michael Adam 2009-08-09 23:02:54 +02:00
parent eb0deeb966
commit bfa2c8ed77

View File

@ -128,7 +128,7 @@ check_allowed_connect_ports (int port)
for (i = 0; i != (size_t)vector_length (ports_allowed_by_connect); ++i)
{
data = vector_getentry (ports_allowed_by_connect, i, NULL);
data = (int *)vector_getentry (ports_allowed_by_connect, i, NULL);
if (data && *data == port)
return 1;
}