From 023af5585f41a0e15313305b38f2747593a5fcdb Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Thu, 17 Apr 2014 16:59:41 -0700 Subject: [PATCH] Remove a debugging statement (oops) --- iothread.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/iothread.cpp b/iothread.cpp index 00c307212..da2e08903 100644 --- a/iothread.cpp +++ b/iothread.cpp @@ -137,7 +137,6 @@ static void *iothread_worker(void *unused) { /* Enqueue the result, and tell the main thread about it */ enqueue_thread_result(req); - fprintf(stderr, "write to %d\n", s_write_pipe); const char wakeup_byte = IO_SERVICE_RESULT_QUEUE; VOMIT_ON_FAILURE(! write_loop(s_write_pipe, &wakeup_byte, sizeof wakeup_byte)); }