From a25199df2a9195475cb8323e6d97d69fb9cb711f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 10 Oct 2012 21:23:49 +0000 Subject: [PATCH] [MSVCRT:APITEST] Update a comment. No code changes. svn path=/trunk/; revision=57533 --- rostests/apitests/msvcrt/CommandLine.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rostests/apitests/msvcrt/CommandLine.c b/rostests/apitests/msvcrt/CommandLine.c index 6af48c09633..0a35f0e90f7 100644 --- a/rostests/apitests/msvcrt/CommandLine.c +++ b/rostests/apitests/msvcrt/CommandLine.c @@ -135,6 +135,7 @@ static void Test_CommandLine(IN ULONG TestNumber, if (TestCase->bEncloseProgramNameInQuotes && bWasntInQuotes) wcscat(CmdLine, L"\""); + /* Add a separating space and copy the tested command line parameters. */ wcscat(CmdLine, L" "); wcscat(CmdLine, TestCase->CmdLine); @@ -306,7 +307,7 @@ START_TEST(CommandLine) wcscat(UtilityProgramDirectory, L"data\\CmdLineUtil.exe"); - /* Close the opened quote if needed, and add a separating space */ + /* Close the opened quote if needed. */ if (UtilityProgramDirectory[0] == L'"') wcscat(UtilityProgramDirectory, L"\"");