From 475df42eb62c3fdc1f60d1970354a89216654b56 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 11 Aug 2013 16:49:03 +0200 Subject: [PATCH] avutil/sha512: make const tables static const Signed-off-by: Michael Niedermayer --- libavutil/sha512.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/sha512.c b/libavutil/sha512.c index 445480cce1e..84136037dbb 100644 --- a/libavutil/sha512.c +++ b/libavutil/sha512.c @@ -285,7 +285,7 @@ int main(void) int i, j, k; AVSHA512 ctx; unsigned char digest[64]; - const int lengths[4] = { 224, 256, 384, 512 }; + static const int lengths[4] = { 224, 256, 384, 512 }; for (j = 0; j < 4; j++) { if (j < 2) printf("Testing SHA-512/%d\n", lengths[j]); -- 2.39.2