mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
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:
parent
4f2f02b7d6
commit
c5867acb0d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue