i965: fix typo
authorDylan Noblesmith <nobled@dreamwidth.org>
Sun, 1 Apr 2012 19:04:47 +0000 (19:04 +0000)
committerDylan Noblesmith <nobled@dreamwidth.org>
Fri, 13 Apr 2012 14:25:12 +0000 (14:25 +0000)
commitdd32df3829317105adbfacc7fe7b1d2a2dc96a58
treea3f46a349d610842b8b59781ebc84fa80071d9ea
parent52d021d4d785a4567b9e73ef89e74a295e8cfed9
i965: fix typo

Noticed by clang:

brw_wm_surface_state.c:330:30: warning: initializer overrides prior
initialization of this subobject [-Winitializer-overrides]
      [MESA_FORMAT_Z24_S8] = 0,
                             ^
brw_wm_surface_state.c:326:30: note: previous initialization is here
      [MESA_FORMAT_Z24_S8] = 0,
                             ^

No functionality change, since the array is declared static so
it was zero-initialized by default.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
src/mesa/drivers/dri/i965/brw_wm_surface_state.c