[PATCH v2 1/3] vcomp: Change _vcomp_fork_call_wrapper() args parameter type to void **.

Alexandre Julliard julliard at winehq.org
Fri Feb 12 10:24:06 CST 2021


Paul Gofman <pgofman at codeweavers.com> writes:

> @@ -117,9 +117,14 @@ struct vcomp_task_data
>      unsigned int            dynamic_chunksize;
>  };
>  
> +static void **ptr_from_va_list(__ms_va_list valist)
> +{
> +    return (void **)valist;
> +}

That doesn't build on ARM:

../wine/dlls/vcomp/main.c:124:21: error: operand of type 'va_list' (aka '__builtin_va_list') where arithmetic or pointer type is required
    return (void **)valist;
                    ^~~~~~
1 error generated.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list