diff options
author | Vinson Lee <[email protected]> | 2010-10-12 22:02:27 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-10-12 22:02:27 -0700 |
commit | 71fa3f8fe21770de6343f4c13a7000cf118a7edd (patch) | |
tree | 1e1008ae1b01918d1d10f325305db0096158f334 | |
parent | 39de9251c4770fdcce3395643003aa626178446d (diff) |
r300: Silence uninitialized variable warning.
Fixes this GCC warning.
r300_state.c: In function 'r300InvalidateState':
r300_state.c:2247: warning: 'hw_format' may be used uninitialized in this function
r300_state.c:2247: note: 'hw_format' was declared here
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_state.c b/src/mesa/drivers/dri/r300/r300_state.c index 0113eecaa3a..bacb8f5e3a3 100644 --- a/src/mesa/drivers/dri/r300/r300_state.c +++ b/src/mesa/drivers/dri/r300/r300_state.c @@ -2292,6 +2292,7 @@ static void r300SetupUsOutputFormat(GLcontext *ctx) break; default: assert(!"Unsupported format"); + hw_format = 0; break; } |