From 90b40b45d40b37ec27f48b63d9208e511c6add01 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Sun, 11 Aug 2013 16:49:21 +0200
Subject: [PATCH] avutil/sha:make const tables static const

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
---
 libavutil/sha.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/sha.c b/libavutil/sha.c
index 5c8e3b6951e..8c4f8a0e433 100644
--- a/libavutil/sha.c
+++ b/libavutil/sha.c
@@ -340,7 +340,7 @@ int main(void)
     int i, j, k;
     AVSHA ctx;
     unsigned char digest[32];
-    const int lengths[3] = { 160, 224, 256 };
+    static const int lengths[3] = { 160, 224, 256 };
 
     for (j = 0; j < 3; j++) {
         printf("Testing SHA-%d\n", lengths[j]);
-- 
GitLab