aboutsummaryrefslogtreecommitdiff
path: root/libvpx/vp8/encoder/lookahead.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvpx/vp8/encoder/lookahead.c')
-rw-r--r--libvpx/vp8/encoder/lookahead.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvpx/vp8/encoder/lookahead.c b/libvpx/vp8/encoder/lookahead.c
index 37aa9eee8..49f851d01 100644
--- a/libvpx/vp8/encoder/lookahead.c
+++ b/libvpx/vp8/encoder/lookahead.c
@@ -66,8 +66,8 @@ struct lookahead_ctx *vp8_lookahead_init(unsigned int width,
depth += 1;
/* Align the buffer dimensions */
- width = (width + 15) & ~15;
- height = (height + 15) & ~15;
+ width = (width + 15) & ~15u;
+ height = (height + 15) & ~15u;
/* Allocate the lookahead structures */
ctx = calloc(1, sizeof(*ctx));