Remove a debug printf

This commit is contained in:
Andreas Öman 2008-09-20 10:28:44 +00:00
parent d055ae6792
commit 800bf52c58

1
tcp.c
View file

@ -487,7 +487,6 @@ tcp_server_create(int port, tcp_server_callback_t *start, void *opaque)
e.data.ptr = ts;
epoll_ctl(tcp_server_epoll_fd, EPOLL_CTL_ADD, fd, &e);
printf("Adding fd %d, listening on port %d\n", fd, port);
return ts;
}