mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 04:40:11 +01:00
svga: Silence uninitialized variable warning.
This commit is contained in:
parent
ef7eb62423
commit
468f270f3f
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue