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

This is a follow-up to commit a508d2dddc.

Fixes the following GCC warning.
id_screen.c: In function 'identity_screen_create':
id_screen.c:317: warning: assignment from incompatible pointer type
This commit is contained in:
Vinson Lee 2010-09-13 23:23:34 -07:00
parent 4f2f02b7d6
commit c5867acb0d

View file

@ -67,7 +67,7 @@ identity_screen_get_vendor(struct pipe_screen *_screen)
static int
identity_screen_get_param(struct pipe_screen *_screen,
unsigned shader, enum pipe_cap param)
enum pipe_cap param)
{
struct identity_screen *id_screen = identity_screen(_screen);
struct pipe_screen *screen = id_screen->screen;