changeset 28359:4e0196e827db

HAVE_ARMV6 is defined to 0/1, use the preprocessor directive accordingly.
author diego
date Fri, 30 Jan 2009 22:27:04 +0000
parents 255f4c172937
children ed8f8f58f855
files liba52/bitstream.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liba52/bitstream.h	Fri Jan 30 21:45:54 2009 +0000
+++ b/liba52/bitstream.h	Fri Jan 30 22:27:04 2009 +0000
@@ -37,7 +37,7 @@
 #define ALT_BITSTREAM_READER
 
 /* used to avoid misaligned exceptions on some archs (alpha, ...) */
-#if ARCH_X86 || defined(HAVE_ARMV6)
+#if ARCH_X86 || HAVE_ARMV6
 #    define unaligned32(a) (*(uint32_t*)(a))
 #else
 #    ifdef __GNUC__