Commit bc811a24 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

Add a missing '\\'.

parent e59561c8
...@@ -807,7 +807,7 @@ BOOL WINAPI ShellExecuteExW32 (LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfun ...@@ -807,7 +807,7 @@ BOOL WINAPI ShellExecuteExW32 (LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfun
} }
else if (PathIsURLW((LPWSTR)lpFile)) /* File not found, check for URL */ else if (PathIsURLW((LPWSTR)lpFile)) /* File not found, check for URL */
{ {
static const WCHAR wShell[] = {'\\','s','h','e','l','l',0}; static const WCHAR wShell[] = {'\\','s','h','e','l','l','\\',0};
static const WCHAR wCommand[] = {'\\','c','o','m','m','a','n','d',0}; static const WCHAR wCommand[] = {'\\','c','o','m','m','a','n','d',0};
LPWSTR lpstrRes; LPWSTR lpstrRes;
INT iSize; INT iSize;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment