diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-05-13 21:14:07 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-05-13 21:14:39 +0100 |
commit | f19b202556d542fcef1f43a6613d03a3295fa404 (patch) | |
tree | 3e4afba4cfa1881829b50fd96c6aa9c27262c2c4 | |
parent | c5c0e0172fc42fcce317f960ef36e5591c38005e (diff) |
util: Fix ptr -> int conversion.
-rw-r--r-- | src/gallium/auxiliary/util/u_surfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_surfaces.c b/src/gallium/auxiliary/util/u_surfaces.c index 668da8c5c2..b5d21570d5 100644 --- a/src/gallium/auxiliary/util/u_surfaces.c +++ b/src/gallium/auxiliary/util/u_surfaces.c @@ -28,7 +28,7 @@ util_surfaces_do_get(struct util_surfaces *us, unsigned surface_struct_size, str { /* or 2D array */ if(!us->u.table) us->u.table = util_hash_table_create(hash, compare); - key = (void *)(((zslice + face) << 8) | level); + key = (void *)(uintptr_t)(((zslice + face) << 8) | level); /* TODO: ouch, should have a get-reference function... * also, shouldn't allocate a two-pointer structure for each item... */ ps = util_hash_table_get(us->u.table, key); |