mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
ntdll: Cast-qual warning fix.
This commit is contained in:
parent
2e372c08b5
commit
589265918c
@ -419,8 +419,8 @@ NTSTATUS WINAPI RtlCreateProcessParameters( RTL_USER_PROCESS_PARAMETERS **result
|
||||
const UNICODE_STRING *ShellInfo,
|
||||
const UNICODE_STRING *RuntimeInfo )
|
||||
{
|
||||
static const WCHAR empty[] = {0};
|
||||
static const UNICODE_STRING empty_str = { 0, sizeof(empty), (WCHAR *)empty };
|
||||
static WCHAR empty[] = {0};
|
||||
static const UNICODE_STRING empty_str = { 0, sizeof(empty), empty };
|
||||
static const UNICODE_STRING null_str = { 0, 0, NULL };
|
||||
|
||||
const RTL_USER_PROCESS_PARAMETERS *cur_params;
|
||||
|
Loading…
Reference in New Issue
Block a user