kernel32: Fix a compiler warning.
This commit is contained in:
parent
1c994d4976
commit
afc85e91ab
|
@ -89,7 +89,7 @@ HANDLE WINAPI CreateActCtxA(PCACTCTXA pActCtx)
|
|||
MultiByteToWideChar(CP_ACP, 0, pActCtx->lpResourceName, -1, resname, len);
|
||||
actw.lpResourceName = resname;
|
||||
}
|
||||
else actw.lpResourceName = (LPWSTR)pActCtx->lpResourceName;
|
||||
else actw.lpResourceName = (LPCWSTR)pActCtx->lpResourceName;
|
||||
}
|
||||
if (actw.dwFlags & ACTCTX_FLAG_APPLICATION_NAME_VALID)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue