On 09/28/2011 02:27 PM, Matt Turner wrote:
Caused by commit 893e86a4, and hidden by the (char *) cast.

Signed-off-by: Matt Turner<[email protected]>

Reviewed-by: Aaron Plattner <[email protected]>

This also fixes the XTS UNRESOLVED results, so

Tested-by: Aaron Plattner <[email protected]>

---
  include/misc.h |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/misc.h b/include/misc.h
index 1fea73e..180b3c1 100644
--- a/include/misc.h
+++ b/include/misc.h
@@ -277,7 +277,7 @@ static inline void __builtin_constant_p(int x)
  /* byte swap a 32-bit value */
  static inline void swap_uint32(uint32_t *x)
  {
-       char n = ((char *)&x)[0];
+       char n = ((char *) x)[0];
        ((char *) x)[0] = ((char *) x)[3];
        ((char *) x)[3] = n;
        n = ((char *) x)[1];
_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to