From: Brian Paul Date: Wed, 12 Jan 2011 21:39:24 +0000 (-0700) Subject: noop: change var type to silence warning X-Git-Tag: mesa-7.11-rc1~2793 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d96af933710c74b3ccf3f24ee7d62e57f330bba;p=platform%2Fupstream%2Fmesa.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 8c9efc2..3680f46 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);