Module: wine Branch: master Commit: 65f686c8cde5c3fb108533fb43feae642a926ac7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=65f686c8cde5c3fb108533fb43...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Jun 29 23:31:27 2012 +0200
start: Fix the name of the open verb for the /ProgIDOpen option.
---
programs/start/start.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/start/start.c b/programs/start/start.c index 8eb7148..f3d934e 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));