[PATCH 2/2] kernelbase: fix comment (name of magic constant has changed)

Jacek Caban jacek at codeweavers.com
Fri Dec 17 09:14:45 CST 2021


On 12/17/21 3:58 PM, Eric Pouech wrote:
> Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
>
> ---
>   dlls/kernelbase/process.c |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/dlls/kernelbase/process.c b/dlls/kernelbase/process.c
> index 0e4a3eb9b6b..0d53684b203 100644
> --- a/dlls/kernelbase/process.c
> +++ b/dlls/kernelbase/process.c
> @@ -189,7 +189,7 @@ static RTL_USER_PROCESS_PARAMETERS *create_process_params( const WCHAR *filename
>       RtlFreeUnicodeString( &newdirW );
>   
>       if (flags & CREATE_NEW_PROCESS_GROUP) params->ConsoleFlags = 1;
> -    if (flags & CREATE_NEW_CONSOLE) params->ConsoleHandle = (HANDLE)1; /* KERNEL32_CONSOLE_ALLOC */
> +    if (flags & CREATE_NEW_CONSOLE) params->ConsoleHandle = (HANDLE)1; /* CONSOLE_HANDLE_ALLOC */


I think we can just use condrv.h here now.


Thanks,

Jacek




More information about the wine-devel mailing list