ntdll: Cast-qual warning fix.

This commit is contained in:
Andrew Talbot 2006-09-19 21:44:40 +01:00 committed by Alexandre Julliard
parent 2e372c08b5
commit 589265918c

View File

@ -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;