From dfd40467c450fc97507ebedf1fa67e2b1c7a1de1 Mon Sep 17 00:00:00 2001 From: Ari Lemmetti Date: Wed, 29 Oct 2014 15:42:16 +0200 Subject: [PATCH] Removed duplicate consts. --- tests/satd_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/satd_tests.c b/tests/satd_tests.c index 31f02cda..e577a5b8 100644 --- a/tests/satd_tests.c +++ b/tests/satd_tests.c @@ -87,7 +87,7 @@ static void satd_tear_down_tests() TEST satd_test_black_and_white(void) { - const int const satd_results[5] = {2040, 4080, 16320, 65280, 261120}; + const int satd_results[5] = {2040, 4080, 16320, 65280, 261120}; const int test = 0; @@ -105,7 +105,7 @@ TEST satd_test_black_and_white(void) TEST satd_test_checkers(void) { - const int const satd_checkers_results[5] = { 2040, 4080, 16320, 65280, 261120 }; + const int satd_checkers_results[5] = { 2040, 4080, 16320, 65280, 261120 }; const int test = 1; @@ -124,7 +124,7 @@ TEST satd_test_checkers(void) TEST satd_test_gradient(void) { - const int const satd_gradient_results[5] = {3140,9004,20481,67262,258672}; + const int satd_gradient_results[5] = {3140,9004,20481,67262,258672}; const int test = 2;