From 970644576ee749252d26a5999e830b44864b13b6 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 15 Oct 2015 13:26:34 -0700 Subject: [PATCH] slirp: remove noisy debug output --- slirp/simh/glib_qemu_stubs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/slirp/simh/glib_qemu_stubs.c b/slirp/simh/glib_qemu_stubs.c index 3cbe8639..2c4bd4a7 100644 --- a/slirp/simh/glib_qemu_stubs.c +++ b/slirp/simh/glib_qemu_stubs.c @@ -154,7 +154,6 @@ unsigned long non_block = 1; void qemu_set_nonblock(int fd) { int f; -fprintf (stderr, "qemu_set_nonblock()\r\n"); f = fcntl(fd, F_GETFL); fcntl(fd, F_SETFL, f | O_NONBLOCK); }