From c834d5de9e4747e5138bed9140320b44622ab6de Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 5 Aug 2011 08:22:01 +0200 Subject: [PATCH] Windows: correct comment in process.c --- src/win/process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win/process.c b/src/win/process.c index 3b4e1d58..7b4b562e 100644 --- a/src/win/process.c +++ b/src/win/process.c @@ -404,9 +404,9 @@ wchar_t* quote_cmd_arg(const wchar_t *source, wchar_t *target) { * input : hello""world * output: "hello\"\"world" * input : hello\world - * output: "hello\world" + * output: hello\world * input : hello\\world - * output: "hello\\world" + * output: hello\\world * input : hello\"world * output: "hello\\\"world" * input : hello\\"world