rbug: Fix 'assignment from incompatible pointer type' warning.

This is a follow-up to commit a508d2dddc.

Fixes the following GCC warning.
rbug_screen.c: In function 'rbug_screen_create':
rbug_screen.c:331: warning: assignment from incompatible pointer type
This commit is contained in:
Vinson Lee 2010-09-13 23:02:37 -07:00
parent fbc7c9b7a9
commit 4f2f02b7d6
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ rbug_screen_get_param(struct pipe_screen *_screen,
static int
rbug_screen_get_shader_param(struct pipe_screen *_screen,
unsigned shader, enum pipe_cap param)
unsigned shader, enum pipe_shader_cap param)
{
struct rbug_screen *rb_screen = rbug_screen(_screen);
struct pipe_screen *screen = rb_screen->screen;