From 8f1a147d68d14202b3191a4a38a7b3ebcb9487ea Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 10 Apr 2019 12:16:33 +0200 Subject: [PATCH] virgl: unsigned int -> unsigned We don't usually spell out the int part of unsigned. Signed-off-by: Erik Faye-Lund Reviewed-by: Gurchetan Singh --- src/gallium/drivers/virgl/virgl_texture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/virgl/virgl_texture.c b/src/gallium/drivers/virgl/virgl_texture.c index 45315b7bb24..755b7686dd1 100644 --- a/src/gallium/drivers/virgl/virgl_texture.c +++ b/src/gallium/drivers/virgl/virgl_texture.c @@ -61,7 +61,7 @@ static void virgl_copy_region_with_blit(struct pipe_context *pipe, } } -static unsigned int temp_bind(unsigned int orig) +static unsigned temp_bind(unsigned orig) { if (orig & ~(PIPE_BIND_RENDER_TARGET | PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_SAMPLER_VIEW)) -- 2.30.2