mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-03 00:00:25 +01:00
svga: Silence uninitialized variable warning.
This commit is contained in:
parent
6a07a1738c
commit
f618641631
1 changed files with 1 additions and 1 deletions
|
|
@ -360,7 +360,7 @@ dump_dstreg(struct sh_dstreg dstreg,
|
|||
union {
|
||||
struct sh_reg reg;
|
||||
struct sh_dstreg dstreg;
|
||||
} u;
|
||||
} u = { { 0 } };
|
||||
|
||||
assert( (dstreg.modifier & (SVGA3DDSTMOD_SATURATE | SVGA3DDSTMOD_PARTIALPRECISION)) == dstreg.modifier );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue