From a478c108e2f1ff8cb76670af885a825fc0e92378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Thu, 19 Dec 2013 22:25:10 +0100 Subject: [PATCH] start: Constify a character string. --- programs/start/start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/start/start.c b/programs/start/start.c index f1cb26ac9ad..a27aad7368a 100644 --- a/programs/start/start.c +++ b/programs/start/start.c @@ -374,7 +374,7 @@ int wmain (int argc, WCHAR *argv[]) WCHAR *commandline; STARTUPINFOW startup_info; PROCESS_INFORMATION process_information; - static WCHAR commandlineformat[] = {'"','%','s','"','%','s',0}; + static const WCHAR commandlineformat[] = {'"','%','s','"','%','s',0}; /* explorer on windows always quotes the filename when running a binary on windows (see bug 5224) so we have to use CreateProcessW in this case */