From b12d92efd6c0d48665383a9baecc13e7ebbd8a22 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 14 Oct 2012 03:17:13 +0200 Subject: avoid "0xFF << 24" as it is considered a integer overflow in C99 Signed-off-by: Michael Niedermayer --- libavcodec/dxa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/dxa.c') diff --git a/libavcodec/dxa.c b/libavcodec/dxa.c index 215519573e..13b63df926 100644 --- a/libavcodec/dxa.c +++ b/libavcodec/dxa.c @@ -209,7 +209,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac r = *buf++; g = *buf++; b = *buf++; - c->pal[i] = 0xFF << 24 | r << 16 | g << 8 | b; + c->pal[i] = 0xFFU << 24 | r << 16 | g << 8 | b; } pc = 1; buf_size -= 768+4; -- cgit v1.2.3