[Mesa-dev] [PATCH] target-helpers: don't use designated initializers

Brian Paul brianp at vmware.com
Tue Jul 1 12:21:35 PDT 2014


On 07/01/2014 01:17 PM, sroland at vmware.com wrote:
> From: Roland Scheidegger <sroland at vmware.com>
>
> it looks since ce1a1372280d737a1b85279995529206586ae480 they are now included
> in more places, in particular even for things buildable with msvc, and hence
> those break the build.
> ---
>   src/gallium/auxiliary/target-helpers/inline_drm_helper.h | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h
> index a03db3a..3b36316 100644
> --- a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h
> +++ b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h
> @@ -210,13 +210,13 @@ dd_driver_name(void)
>   }
>
>   static const struct drm_conf_ret throttle_ret = {
> -   .type = DRM_CONF_INT,
> -   .val.val_int = 2,
> +   DRM_CONF_INT,
> +   {2},
>   };
>
>   static const struct drm_conf_ret share_fd_ret = {
> -   .type = DRM_CONF_BOOL,
> -   .val.val_int = true,
> +   DRM_CONF_BOOL,
> +   {true},
>   };
>
>   static const struct drm_conf_ret *
>

Reviewed-by: Brian Paul <brianp at vmware.com>



More information about the mesa-dev mailing list