diff options
author | Brian Paul <[email protected]> | 2011-08-26 14:16:20 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-26 14:16:20 -0600 |
commit | e3b0e3776646d0367206e4544229622eb22fe9f8 (patch) | |
tree | deb3ed586a6b61c25efcf2be346afb9b5bf448d1 /src/gallium | |
parent | 50da22ceb16a7398612a8b5b7036ef2e0b635eef (diff) |
g3dvl: use pointer_to_uintptr() to silence a cast warning
Diffstat (limited to 'src/gallium')
-rw-r--r-- | 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 17a7b650c09..4db1334d6a4 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; |