From 36cad6abe8cdbf1a927eeecd809219d87ab37805 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 16 Oct 2014 10:51:57 +0200 Subject: [PATCH] bit_reader.h: cosmetics: fix a typo Change-Id: I1ba09124700b3120f18eb3705eb5ba805feb2ca0 (cherry picked from commit 79b5bdbfde6773e95744155853ecb880889b931a) --- src/utils/bit_reader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/bit_reader.h b/src/utils/bit_reader.h index 89b5cc1c..f569734f 100644 --- a/src/utils/bit_reader.h +++ b/src/utils/bit_reader.h @@ -156,7 +156,7 @@ static WEBP_INLINE void VP8LSetBitPos(VP8LBitReader* const br, int val) { } // Advances the read buffer by 4 bytes to make room for reading next 32 bits. -// Speed critical, but infrequent part of the code can be non-inligned. +// Speed critical, but infrequent part of the code can be non-inlined. extern void VP8LDoFillBitWindow(VP8LBitReader* const br); static WEBP_INLINE void VP8LFillBitWindow(VP8LBitReader* const br) { if (br->bit_pos_ >= VP8L_WBITS) VP8LDoFillBitWindow(br);