svga: Silence uninitialized variable warning.

This commit is contained in:
Vinson Lee 2010-02-12 22:33:37 -08:00
parent 6a07a1738c
commit f618641631
1 changed files with 1 additions and 1 deletions

View File

@ -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 );