Fix wrong pointer types in the network range structures.

This commit is contained in:
Sam Hocevar
2010-10-07 22:53:05 +00:00
committed by sam
parent 710b26fd21
commit b86cd9d9ce
+2 -2
View File
@@ -47,8 +47,8 @@ static unsigned int *deny = NULL;
static unsigned int static_deny[512];
/* Network port cherry picking */
static int *ports = NULL;
static int static_ports[512];
static int64_t *ports = NULL;
static int64_t static_ports[512];
#endif
void _zz_network_init(void)