Skip to content
Snippets Groups Projects
Commit 1c32caf0 authored by Brian Paul's avatar Brian Paul
Browse files

gallium/xlib: silence uninitialized var warning

parent 67c286d2
No related branches found
No related tags found
No related merge requests found
...@@ -364,7 +364,7 @@ void xlib_brw_buffer_subdata_typed( struct pipe_winsys *pws, ...@@ -364,7 +364,7 @@ void xlib_brw_buffer_subdata_typed( struct pipe_winsys *pws,
unsigned data_type ) unsigned data_type )
{ {
unsigned aub_type = DW_GENERAL_STATE; unsigned aub_type = DW_GENERAL_STATE;
unsigned aub_sub_type; unsigned aub_sub_type = 0;
switch (data_type) { switch (data_type) {
case BRW_CC_VP: case BRW_CC_VP:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment