svga: Silence uninitialized variable warning.

This commit is contained in:
Vinson Lee 2010-01-06 17:51:08 -08:00
parent ef7eb62423
commit 468f270f3f

View file

@ -67,7 +67,7 @@ static enum pipe_error compile_fs( struct svga_context *svga,
struct svga_shader_result **out_result )
{
struct svga_shader_result *result;
enum pipe_error ret;
enum pipe_error ret = PIPE_ERROR;
result = svga_translate_fragment_program( fs, key );
if (result == NULL) {