From 010f0b96a37dbdce3b3216ebf8d6148be2bbe179 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 18 Oct 2015 11:00:55 +0200 Subject: [PATCH] win: fix comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the following: ~~~~ src/win/tty.c: In function 'uv_tty_capture_initial_style': src/win/tty.c:211:3: error: "/" within comment [-Werror=comment] / Assumption: Caller has acquired uv_tty_output_lock. */ ~~~~ PR-URL: https://github.com/libuv/libuv/pull/578 Reviewed-By: Saúl Ibarra Corretgé --- src/win/tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/tty.c b/src/win/tty.c index b40bb427..d87cc699 100644 --- a/src/win/tty.c +++ b/src/win/tty.c @@ -208,7 +208,7 @@ static void uv_tty_capture_initial_style(CONSOLE_SCREEN_BUFFER_INFO* info) { static int style_captured = 0; /* Only do this once. - /* Assumption: Caller has acquired uv_tty_output_lock. */ + Assumption: Caller has acquired uv_tty_output_lock. */ if (style_captured) return;