From: Brian Paul Date: Mon, 29 Oct 2018 17:15:09 +0000 (-0600) Subject: nir: fix yet another MSVC build break X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9007c0ed26858cb1a40d17e1f5b477d6ed3d2db7;p=mesa.git nir: fix yet another MSVC build break Trivial. --- diff --git a/src/compiler/nir/nir_gather_xfb_info.c b/src/compiler/nir/nir_gather_xfb_info.c index a53703bb9bf..e282bba0081 100644 --- a/src/compiler/nir/nir_gather_xfb_info.c +++ b/src/compiler/nir/nir_gather_xfb_info.c @@ -138,7 +138,7 @@ nir_gather_xfb_info(const nir_shader *shader, void *mem_ctx) compare_xfb_output_offsets); /* Finally, do a sanity check */ - unsigned max_offset[NIR_MAX_XFB_BUFFERS] = { }; + unsigned max_offset[NIR_MAX_XFB_BUFFERS] = {0}; for (unsigned i = 0; i < xfb->output_count; i++) { assert(xfb->outputs[i].offset >= max_offset[xfb->outputs[i].buffer]); assert(xfb->outputs[i].component_mask != 0);