From: Brian Paul Date: Wed, 12 Jan 2011 21:39:24 +0000 (-0700) Subject: noop: change var type to silence warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d96af933710c74b3ccf3f24ee7d62e57f330bba;p=mesa.git noop: change var type to silence warning --- diff --git a/src/gallium/drivers/noop/noop_pipe.c b/src/gallium/drivers/noop/noop_pipe.c index 8c9efc2f536..3680f4622da 100644 --- a/src/gallium/drivers/noop/noop_pipe.c +++ b/src/gallium/drivers/noop/noop_pipe.c @@ -124,7 +124,7 @@ static struct pipe_resource *noop_resource_from_handle(struct pipe_screen *scree struct noop_pipe_screen *noop_screen = (struct noop_pipe_screen*)screen; struct pipe_screen *oscreen = noop_screen->oscreen; struct pipe_resource *result; - struct noop_resource *noop_resource; + struct pipe_resource *noop_resource; result = oscreen->resource_from_handle(oscreen, templ, handle); noop_resource = noop_resource_create(screen, result);