i965g: Silence uninitialized variable warning.

This commit is contained in:
Vinson Lee 2010-01-26 17:00:15 -08:00
parent 6ab9740b7a
commit 25b8ce3a6a
1 changed files with 3 additions and 0 deletions

View File

@ -138,6 +138,9 @@ brw_get_name(struct pipe_screen *screen)
case PCI_CHIP_ILM_G:
chipset = "ILM_G";
break;
default:
chipset = "unknown";
break;
}
util_snprintf(buffer, sizeof(buffer), "i965 (chipset: %s)", chipset);