Add a missing '\\'.

This commit is contained in:
Huw Davies 2004-03-01 23:11:53 +00:00 committed by Alexandre Julliard
parent e59561c8fe
commit bc811a2489
1 changed files with 1 additions and 1 deletions

View File

@ -807,7 +807,7 @@ BOOL WINAPI ShellExecuteExW32 (LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfun
}
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};
LPWSTR lpstrRes;
INT iSize;