From 7ed5d671332dca3fea1008f22a6cc30892ee2ee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1ri=20Tristan=20Helgason?= Date: Sat, 2 Apr 2016 16:00:47 +0200 Subject: [PATCH] unix: remove outdated comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The comment removed by this commit is no longer relevant, as the function's return type changed from int to void. PR-URL: https://github.com/libuv/libuv/pull/804 Reviewed-By: Colin Ihrig Reviewed-By: Saúl Ibarra Corretgé --- src/unix/pipe.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/unix/pipe.c b/src/unix/pipe.c index 05d37f46..d4fdfa9d 100644 --- a/src/unix/pipe.c +++ b/src/unix/pipe.c @@ -200,9 +200,6 @@ out: if (err) uv__io_feed(handle->loop, &handle->io_watcher); - /* Mimic the Windows pipe implementation, always - * return 0 and let the callback handle errors. - */ }