test-delayed-accept.c: fix type mismatch in comparison.

This commit is contained in:
Ben Noordhuis 2011-07-13 18:03:44 +02:00
parent 1a53b89847
commit afc96b58c8

View File

@ -50,8 +50,8 @@ static void close_cb(uv_handle_t* handle) {
static void do_accept(uv_timer_t* timer_handle, int status) {
uv_tcp_t* server;
uv_tcp_t* accepted_handle = (uv_tcp_t*)malloc(sizeof *accepted_handle);
uint64_t tcpcnt;
int r;
int tcpcnt;
ASSERT(timer_handle != NULL);
ASSERT(status == 0);