From: Luca Barbieri Date: Sun, 18 Apr 2010 15:35:17 +0000 (+0200) Subject: u_surfaces: silence warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cea7b9f937dd8d987dc48e636adf83a829897a28;p=mesa.git u_surfaces: silence warning --- diff --git a/src/gallium/auxiliary/util/u_surfaces.c b/src/gallium/auxiliary/util/u_surfaces.c index 3a0539ceb47..056b8f23418 100644 --- a/src/gallium/auxiliary/util/u_surfaces.c +++ b/src/gallium/auxiliary/util/u_surfaces.c @@ -68,7 +68,7 @@ util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps) struct pipe_resource *pt = ps->texture; if(pt->target == PIPE_TEXTURE_3D || pt->target == PIPE_TEXTURE_CUBE) { /* or 2D array */ - unsigned key = ((ps->zslice + ps->face) << 8) | ps->level; + void* key = (void*)(((ps->zslice + ps->face) << 8) | ps->level); util_hash_table_remove(us->u.table, key); } else