From 8658ef06c2aec1d7ea4cdaca3bbb709f73d3f730 Mon Sep 17 00:00:00 2001 From: Eric Sciple Date: Fri, 28 Oct 2016 22:29:59 -0400 Subject: [PATCH] win: fix comment in quote_cmd_arg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/1113 Reviewed-By: Saúl Ibarra Corretgé Reviewed-by: Bert Belder --- src/win/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/process.c b/src/win/process.c index 855c3740..bdf88d2c 100644 --- a/src/win/process.c +++ b/src/win/process.c @@ -492,7 +492,7 @@ WCHAR* quote_cmd_arg(const WCHAR *source, WCHAR *target) { * input : hello\\"world * output: "hello\\\\\"world" * input : hello world\ - * output: "hello world\" + * output: "hello world\\" */ *(target++) = L'"';