From: Jose Fonseca Date: Wed, 24 Oct 2018 10:33:09 +0000 (+0100) Subject: nir: Fix array initializer. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9a04196d9b3919ed216842510606654eb64222d;p=mesa.git nir: Fix array initializer. Empty initializer is not standard C. This fixes MSVC build. Trivial. --- diff --git a/src/compiler/nir/nir_linking_helpers.c b/src/compiler/nir/nir_linking_helpers.c index ca46a6b71b0..de6f2481def 100644 --- a/src/compiler/nir/nir_linking_helpers.c +++ b/src/compiler/nir/nir_linking_helpers.c @@ -531,7 +531,7 @@ nir_compact_varyings(nir_shader *producer, nir_shader *consumer, void nir_link_xfb_varyings(nir_shader *producer, nir_shader *consumer) { - nir_variable *input_vars[MAX_VARYING] = {}; + nir_variable *input_vars[MAX_VARYING] = { 0 }; nir_foreach_variable(var, &consumer->inputs) { if (var->data.location >= VARYING_SLOT_VAR0 &&