From: Michael Niedermayer Date: Sun, 11 Aug 2013 14:49:03 +0000 (+0200) Subject: avutil/sha512: make const tables static const X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=475df42eb62c3fdc1f60d1970354a89216654b56;hp=4ccafaca1cf60227527c7df12668fb3c8eecb23f;p=ffmpeg avutil/sha512: make const tables static const Signed-off-by: Michael Niedermayer --- 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]);