Mesa (master): g3dvl: use pointer_to_uintptr() to silence a cast warning

Brian Paul brianp at kemper.freedesktop.org
Fri Aug 26 20:19:03 UTC 2011


Module: Mesa
Branch: master
Commit: e3b0e3776646d0367206e4544229622eb22fe9f8
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e3b0e3776646d0367206e4544229622eb22fe9f8

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Aug 26 14:16:20 2011 -0600

g3dvl: use pointer_to_uintptr() to silence a cast warning

---

 src/gallium/auxiliary/vl/vl_vlc.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/vl/vl_vlc.h b/src/gallium/auxiliary/vl/vl_vlc.h
index 17a7b65..4db1334 100644
--- a/src/gallium/auxiliary/vl/vl_vlc.h
+++ b/src/gallium/auxiliary/vl/vl_vlc.h
@@ -33,6 +33,7 @@
 #include <pipe/p_compiler.h>
 
 #include <util/u_math.h>
+#include "util/u_pointer.h"
 
 struct vl_vlc
 {
@@ -98,7 +99,7 @@ vl_vlc_init(struct vl_vlc *vlc, const uint8_t *data, unsigned len)
    vlc->valid_bits = 0;
 
    /* align the data pointer */
-   while((uint64_t)data & 3) {
+   while (pointer_to_uintptr(data) & 3) {
       vlc->buffer |= (uint64_t)*data << (56 - vlc->valid_bits);
       ++data;
       --len;




More information about the mesa-commit mailing list