slirp: remove noisy debug output

This commit is contained in:
Mark Pizzolato 2015-10-15 13:26:34 -07:00
parent 73f633fa69
commit 970644576e

View file

@ -154,7 +154,6 @@ unsigned long non_block = 1;
void qemu_set_nonblock(int fd) void qemu_set_nonblock(int fd)
{ {
int f; int f;
fprintf (stderr, "qemu_set_nonblock()\r\n");
f = fcntl(fd, F_GETFL); f = fcntl(fd, F_GETFL);
fcntl(fd, F_SETFL, f | O_NONBLOCK); fcntl(fd, F_SETFL, f | O_NONBLOCK);
} }