summaryrefslogtreecommitdiff
path: root/tests/checkasm
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-04-13 18:54:17 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-04-13 22:39:41 +0200
commit3c0511f29e9e775c709a8e7e9c8c9729724a8b65 (patch)
tree95c679f5081e79707f57e06fefb00bc977d2545e /tests/checkasm
parentfa0f59d55d9366d082de5a0ab1369163dad5d680 (diff)
tests/checkasm/vf_colorspace: Make bpp_mask const
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/checkasm')
-rw-r--r--tests/checkasm/vf_colorspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/vf_colorspace.c b/tests/checkasm/vf_colorspace.c
index 9ac841cfd4..10b7b83924 100644
--- a/tests/checkasm/vf_colorspace.c
+++ b/tests/checkasm/vf_colorspace.c
@@ -48,7 +48,7 @@ static const char *format_string[] = {
"444", "422", "420"
};
-static unsigned bpp_mask[] = { 0xffffffff, 0x03ff03ff, 0x0fff0fff };
+static const unsigned bpp_mask[] = { 0xffffffff, 0x03ff03ff, 0x0fff0fff };
static void check_yuv2yuv(void)
{