From 65f686c8cde5c3fb108533fb43feae642a926ac7 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 29 Jun 2012 23:31:27 +0200 Subject: [PATCH] start: Fix the name of the open verb for the /ProgIDOpen option. --- 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 8eb71483465..f3d934eeed2 100644 --- a/programs/start/start.c +++ b/programs/start/start.c @@ -207,7 +207,7 @@ int wmain (int argc, WCHAR *argv[]) static const WCHAR unixW[] = { '/', 'u', 'n', 'i', 'x', 0 }; static const WCHAR progIDOpenW[] = { '/', 'p', 'r', 'o', 'g', 'I', 'D', 'O', 'p', 'e', 'n', 0}; - static const WCHAR openW[] = { '/', 'o', 'p', 'e', 'n', 0 }; + static const WCHAR openW[] = { 'o', 'p', 'e', 'n', 0 }; static const WCHAR cmdW[] = { 'c', 'm', 'd', '.', 'e', 'x', 'e', 0 }; memset(&sei, 0, sizeof(sei));