summaryrefslogtreecommitdiffstats
path: root/liba52/bitstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'liba52/bitstream.h')
-rw-r--r--liba52/bitstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/liba52/bitstream.h b/liba52/bitstream.h
index 601ffa6871..071fe72906 100644
--- a/liba52/bitstream.h
+++ b/liba52/bitstream.h
@@ -42,7 +42,7 @@
// alternative (faster) bitstram reader (reades upto 3 bytes over the end of the input)
#define ALT_BITSTREAM_READER
-/* used to avoid missaligned exceptions on some archs (alpha, ...) */
+/* used to avoid misaligned exceptions on some archs (alpha, ...) */
#if defined (ARCH_X86) || defined(ARCH_ARMV4L)
# define unaligned32(a) (*(uint32_t*)(a))
#else